diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2016-02-10 15:22:59 +0000 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2016-02-10 17:15:59 +0000 |
commit | 4701be7198eb3168b38d1a82a38c561391f26b16 (patch) | |
tree | c91aa1905ddfb97515f536f0013ba2ff0b2bdf72 | |
parent | 21b459e4bbfc14fd1ec9076e3a0b01f6f11ba960 (diff) | |
download | ffmpeg-4701be7198eb3168b38d1a82a38c561391f26b16.tar.gz |
options_table: update maximum bitrate limit
The type of the option has been changed but the limit was apparently forgotten.
Some video codes can handle bitrates of over ~2.2 Gbps (like VC-2).
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
-rw-r--r-- | libavcodec/options_table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index 75fb09372a..aa8bfacc47 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -42,7 +42,7 @@ #define AV_CODEC_DEFAULT_BITRATE 200*1000 static const AVOption avcodec_options[] = { -{"b", "set bitrate (in bits/s)", OFFSET(bit_rate), AV_OPT_TYPE_INT64, {.i64 = AV_CODEC_DEFAULT_BITRATE }, 0, INT_MAX, A|V|E}, +{"b", "set bitrate (in bits/s)", OFFSET(bit_rate), AV_OPT_TYPE_INT64, {.i64 = AV_CODEC_DEFAULT_BITRATE }, 0, INT64_MAX, A|V|E}, {"ab", "set bitrate (in bits/s)", OFFSET(bit_rate), AV_OPT_TYPE_INT64, {.i64 = 128*1000 }, 0, INT_MAX, A|E}, {"bt", "Set video bitrate tolerance (in bits/s). In 1-pass mode, bitrate tolerance specifies how far " "ratecontrol is willing to deviate from the target average bitrate value. This is not related " |