aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-05-07 10:02:59 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-05-07 10:02:59 +0000
commitefdc74ef198e9e73e63818f20417e4582b9b6a18 (patch)
treea2ed3b8a3eb9912c555da9a04f424768a4fcd74b /libavfilter/avfilter.h
parent46847a336e7e71559c8f3917bf8512c90635598b (diff)
downloadffmpeg-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.h')
-rw-r--r--libavfilter/avfilter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 214b8d481a..3566ed61c3 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -115,6 +115,9 @@ typedef struct AVFilterPicRef
#define AV_PERM_PRESERVE 0x04 ///< nobody else can overwrite the buffer
#define AV_PERM_REUSE 0x08 ///< can output the buffer multiple times, with the same contents each time
#define AV_PERM_REUSE2 0x10 ///< can output the buffer multiple times, modified each time
+
+ int interlaced; ///< is frame interlaced
+ int top_field_first;
} AVFilterPicRef;
/**