diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-30 04:56:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-30 05:00:54 +0200 |
commit | f977e69dacf092af3741abebd20239fa10b107c3 (patch) | |
tree | 35fbd9b03ea10afe0079329504a443d25c96a9cb /libavcodec/mpegvideo.h | |
parent | bf2474c74f2c0b956c069f50483c7d104d856d8b (diff) | |
download | ffmpeg-f977e69dacf092af3741abebd20239fa10b107c3.tar.gz |
avcodec/mpegvideo_enc: Ignore QMAX if VBV constraints are exceeded
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index f8ae564392..84920452e4 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -539,6 +539,7 @@ typedef struct MpegEncContext { float rc_buffer_aggressivity; float border_masking; int lmin, lmax; + int vbv_ignore_qmax; char *rc_eq; |