aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorCorey Hickey <bugfood-ml@fatooh.org>2006-06-03 06:26:04 +0000
committerCorey Hickey <bugfood-ml@fatooh.org>2006-06-03 06:26:04 +0000
commitf9243d34f19da816e05ad9e314e52b609e928bb1 (patch)
tree2dfd9ef977aad109bb8a8b516d1bbe318490230b /libavcodec/avcodec.h
parent7e5370516b96b92f2c37b943695b8933e92f40c7 (diff)
downloadffmpeg-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.h7
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;
/**