diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-12-25 18:34:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-12-25 18:34:02 +0000 |
commit | e8501c93b58d93505adaaaaf6d99595a9f33949c (patch) | |
tree | 72a85db1b3dd71efabbbffd7d26becf5ecde6cc9 /libavcodec/avcodec.h | |
parent | c9ab8df88a51821ceec673e74437817a937cb708 (diff) | |
download | ffmpeg-e8501c93b58d93505adaaaaf6d99595a9f33949c.tar.gz |
support downscaling frames for dynamic b frame decission
Originally committed as revision 4776 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index e09351f94b..0c810aa40f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1869,6 +1869,13 @@ typedef struct AVCodecContext { * - decoding: unused */ int bidir_refine; + + /** + * + * - encoding: set by user. + * - decoding: unused + */ + int brd_scale; } AVCodecContext; /** |