diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-09-01 13:15:09 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-06 20:14:35 +0200 |
commit | f83c45183e6b98e553d25cbf51a9b4c729e959b9 (patch) | |
tree | 1c4e39b678c910e7610aa1086a9d91478903e58b /libavcodec/avcodec.h | |
parent | bb73cda2f6667aa2c1b805a31a10ce9d59c3293d (diff) | |
download | ffmpeg-f83c45183e6b98e553d25cbf51a9b4c729e959b9.tar.gz |
libx264: add 'b-bias' private option
Deprecate AVCodecContext.bframebias.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f30584cb98..e31190b309 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2433,12 +2433,14 @@ typedef struct AVCodecContext { */ int chromaoffset; +#if FF_API_X264_GLOBAL_OPTS /** * Influences how often B-frames are used. * - encoding: Set by user. * - decoding: unused */ - int bframebias; + attribute_deprecated int bframebias; +#endif /** * trellis RD quantization |