diff options
author | Johns <johns98@gmx.net> | 2011-12-23 20:31:52 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2011-12-23 20:31:52 +0100 |
commit | d574fbe8b3d4c4eec9675bd718af8a5c0e7b8986 (patch) | |
tree | 3070d68a5bc21150508c5bb7ba504d0f17e7534c /video.c | |
parent | 34c72d08b3304236d16b554fc1f3180267df42a6 (diff) | |
download | vdr-plugin-softhddevice-d574fbe8b3d4c4eec9675bd718af8a5c0e7b8986.tar.gz vdr-plugin-softhddevice-d574fbe8b3d4c4eec9675bd718af8a5c0e7b8986.tar.bz2 |
Remove interlaced_frame debug, it can't be used.
Diffstat (limited to 'video.c')
-rw-r--r-- | video.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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; |