mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
avcodec/mv30: Inline constants
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
90c4958640
commit
8c6a67e6c4
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue