#2190: yuv4mpegpipe does not preserve interlaced settings
------------------------------------+------------------------------------
Reporter: ulatekh | Owner:
Type: defect | Status: open
Priority: normal | Component: avformat
Version: git-master | Resolution:
Keywords: yuv4mpeg | Blocked By:
Blocking: | Reproduced by developer: 1
Analyzed by developer: 0 |
------------------------------------+------------------------------------
Comment (by ulatekh):
I just noticed something in your patch...in the libavformat/yuv4mpeg.c
section, you have
{{{
inter = st->codec->field_order == AV_FIELD_TT || st->codec->field_order ==
AV_FIELD_TB ? 't' : 'b';
}}}
Shouldn't that be
{{{
inter = st->codec->field_order == st->codec->field_order == AV_FIELD_TT ?
't' : 'b';
}}}
?
--
Ticket URL: <https://ffmpeg.org/trac/ffmpeg/ticket/2190#comment:7>
FFmpeg <http://ffmpeg.org>
FFmpeg issue tracker
_______________________________________________
FFmpeg-trac mailing list
[email protected]
http://avcodec.org/mailman/listinfo/ffmpeg-trac