diff options
author | Corey Hickey <bugfood-ml@fatooh.org> | 2006-06-03 06:26:04 +0000 |
---|---|---|
committer | Corey Hickey <bugfood-ml@fatooh.org> | 2006-06-03 06:26:04 +0000 |
commit | f9243d34f19da816e05ad9e314e52b609e928bb1 (patch) | |
tree | 2dfd9ef977aad109bb8a8b516d1bbe318490230b /libavcodec/avcodec.h | |
parent | 7e5370516b96b92f2c37b943695b8933e92f40c7 (diff) | |
download | ffmpeg-f9243d34f19da816e05ad9e314e52b609e928bb1.tar.gz |
Make B-frame reduction sensitivity by b_strategy/vb_strategy = 1
user-tunable.
Originally committed as revision 5450 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 d352edc97b..eb0fe81856 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1977,6 +1977,13 @@ typedef struct AVCodecContext { * - decoding: unused */ int mv0_threshold; + + /** + * adjusts sensitivity of b_frame_strategy 1 + * - encoding: set by user. + * - decoding: unused + */ + int b_sensitivity; } AVCodecContext; /** |