diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2013-01-21 21:14:13 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-25 17:09:59 +0100 |
commit | 40b4468f6231d46cac2c7d1cac7613a77faf8e8e (patch) | |
tree | ed639ca1a93fe427f22a76fad56a9555aa75ed38 /libavcodec/dnxhddata.c | |
parent | 495cb44172d0e258cead7e558bc9cbb4727bbd4c (diff) | |
download | ffmpeg-40b4468f6231d46cac2c7d1cac7613a77faf8e8e.tar.gz |
lavc/dnxhddata: fix bitrates for cid 1251 and 1252 in cid table
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dnxhddata.c')
-rw-r--r-- | libavcodec/dnxhddata.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dnxhddata.c b/libavcodec/dnxhddata.c index c433d9d13e..c9d82c82b2 100644 --- a/libavcodec/dnxhddata.c +++ b/libavcodec/dnxhddata.c @@ -1001,14 +1001,14 @@ const CIDEntry ff_dnxhd_cid_table[] = { dnxhd_1251_ac_codes, dnxhd_1251_ac_bits, dnxhd_1251_ac_level, dnxhd_1251_ac_flags, dnxhd_1251_run_codes, dnxhd_1251_run_bits, dnxhd_1251_run, - { 90, 110, 175, 220 } }, + { 90, 110, 180, 220 } }, { 1252, 1280, 720, 0, 303104, 303104, 4, 8, 5, dnxhd_1252_luma_weight, dnxhd_1252_chroma_weight, dnxhd_1252_dc_codes, dnxhd_1252_dc_bits, dnxhd_1252_ac_codes, dnxhd_1252_ac_bits, dnxhd_1252_ac_level, dnxhd_1252_ac_flags, dnxhd_1251_run_codes, dnxhd_1251_run_bits, dnxhd_1251_run, - { 60, 75, 115, 145 } }, + { 60, 75, 120, 145 } }, { 1253, 1920, 1080, 0, 188416, 188416, 4, 8, 3, dnxhd_1237_luma_weight, dnxhd_1237_chroma_weight, dnxhd_1237_dc_codes, dnxhd_1237_dc_bits, |