From d574fbe8b3d4c4eec9675bd718af8a5c0e7b8986 Mon Sep 17 00:00:00 2001 From: Johns Date: Fri, 23 Dec 2011 20:31:52 +0100 Subject: [PATCH] Remove interlaced_frame debug, it can't be used. --- video.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/video.c b/video.c index d75c1d8..33b0b8a 100644 --- a/video.c +++ b/video.c @@ -5677,13 +5677,12 @@ enum PixelFormat Video_get_format(VideoHwDecoder * decoder, /// @param interlaced interlaced flag (frame isn't right) /// @param frame frame to display /// +/// @note frame->interlaced_frame can't be used for interlace detection +/// static void VideoSetPts(int64_t * pts_p, int interlaced, const AVFrame * frame) { int64_t pts; - if (interlaced != frame->interlaced_frame) { - Debug(3, "video: can't use frame->interlaced_frame\n"); - } // update video clock if ((uint64_t) * pts_p != AV_NOPTS_VALUE) { *pts_p += interlaced ? 40 * 90 : 20 * 90;