diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-16 14:58:06 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-12-08 17:51:47 +0100 |
commit | 8c6a67e6c40e7b6ab089ecd53886786c86f8ec5e (patch) | |
tree | ab6bab28e231c83644257d32d766e59aa2a97742 | |
parent | 90c4958640cb0a4eb495a16e01926d379c1ceaed (diff) | |
download | ffmpeg-8c6a67e6c40e7b6ab089ecd53886786c86f8ec5e.tar.gz |
avcodec/mv30: Inline constants
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/mv30.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mv30.c b/libavcodec/mv30.c index 2efc96bbf9..7ae264e0f0 100644 --- a/libavcodec/mv30.c +++ b/libavcodec/mv30.c @@ -379,7 +379,7 @@ static int decode_coeffs(GetBitContext *gb, int16_t *coeffs, int nb_codes) memset(coeffs, 0, nb_codes * sizeof(*coeffs)); for (int i = 0; i < nb_codes;) { - int value = get_vlc2(gb, cbp_tab.table, cbp_tab.bits, 1); + int value = get_vlc2(gb, cbp_tab.table, CBP_VLC_BITS, 1); if (value > 0) { int x = get_bits(gb, value); |