Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Gisquet <christophe.gisquet@gmail.com>2014-10-14 04:02:36 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-10-28 14:22:03 +0300
commit4fa772acbbac6467165de1ea67a7f303a029cb1d (patch)
treee5f8547810970ac57f12b5ada6f2d1510815fbd5 /libavcodec/dv.h
parent280da99a8fdd0533a1507643f24ee070a65785d3 (diff)
dv: increase VLC reading bits to 10
This also requires a bump in the table size of bit patterns to 1664. From 356 to 348 cycles. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dv.h')
-rw-r--r--libavcodec/dv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dv.h b/libavcodec/dv.h
index e68d7b02d5..5d282633dd 100644
--- a/libavcodec/dv.h
+++ b/libavcodec/dv.h
@@ -90,9 +90,9 @@ enum dv_pack_type {
*/
#define DV_MAX_BPM 8
-#define TEX_VLC_BITS 9
+#define TEX_VLC_BITS 10
-extern RL_VLC_ELEM ff_dv_rl_vlc[1184];
+extern RL_VLC_ELEM ff_dv_rl_vlc[1664];
int ff_dv_init_dynamic_tables(DVVideoContext *s, const AVDVProfile *d);