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/defaults.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/defaults.c')
-rw-r--r-- | libavfilter/defaults.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/defaults.c b/libavfilter/defaults.c index afa0f669b9..f348d4f2b8 100644 --- a/libavfilter/defaults.c +++ b/libavfilter/defaults.c @@ -76,6 +76,8 @@ void avfilter_default_start_frame(AVFilterLink *link, AVFilterPicRef *picref) out->outpic->pts = picref->pts; out->outpic->pos = picref->pos; out->outpic->pixel_aspect = picref->pixel_aspect; + out->outpic->interlaced = picref->interlaced; + out->outpic->top_field_first = picref->top_field_first; avfilter_start_frame(out, avfilter_ref_pic(out->outpic, ~0)); } } |