diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-05-07 10:02:59 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-05-07 10:02:59 +0000 |
commit | efdc74ef198e9e73e63818f20417e4582b9b6a18 (patch) | |
tree | a2ed3b8a3eb9912c555da9a04f424768a4fcd74b /libavfilter/avfilter.c | |
parent | 46847a336e7e71559c8f3917bf8512c90635598b (diff) | |
download | ffmpeg-efdc74ef198e9e73e63818f20417e4582b9b6a18.tar.gz |
Try to keep track of interlaced and top field first.
Originally committed as revision 23044 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 3ed59d7cc2..38ca3b1e91 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -266,6 +266,8 @@ void avfilter_start_frame(AVFilterLink *link, AVFilterPicRef *picref) link->cur_pic->pts = link->srcpic->pts; link->cur_pic->pos = link->srcpic->pos; link->cur_pic->pixel_aspect = link->srcpic->pixel_aspect; + link->cur_pic->interlaced = link->srcpic->interlaced; + link->cur_pic->top_field_first = link->srcpic->top_field_first; } else link->cur_pic = picref; |