Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-05-07 14:02:59 +0400
committerMichael Niedermayer <michaelni@gmx.at>2010-05-07 14:02:59 +0400
commitefdc74ef198e9e73e63818f20417e4582b9b6a18 (patch)
treea2ed3b8a3eb9912c555da9a04f424768a4fcd74b /libavfilter/avfilter.c
parent46847a336e7e71559c8f3917bf8512c90635598b (diff)
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.c2
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;