Browse Source

avcodec/mv30: Don't check for errors for complete VLCs

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
tags/n4.4
Andreas Rheinhardt 4 years ago
parent
commit
37f510d3f4
1 changed files with 0 additions and 3 deletions
  1. +0
    -3
      libavcodec/mv30.c

+ 0
- 3
libavcodec/mv30.c View File

@@ -379,9 +379,6 @@ static int decode_coeffs(GetBitContext *gb, int16_t *coeffs, int nb_codes)
for (int i = 0; i < nb_codes;) { 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_tab.bits, 1);


if (value < 0)
return AVERROR_INVALIDDATA;

if (value > 0) { if (value > 0) {
int x = get_bits(gb, value); int x = get_bits(gb, value);




Loading…
Cancel
Save