summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--video.c5
1 files 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;