Browse Source

avcodec/diracdec: Fix "warning: comparison of constant 4 with expression of type enum dirac_subband is always true [-Wtautological-constant-out-of-range-compare]"

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4
Michael Niedermayer 11 years ago
parent
commit
baee313aa9
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/diracdec.c

+ 2
- 1
libavcodec/diracdec.c View File

@@ -234,7 +234,8 @@ enum dirac_subband {
subband_ll = 0,
subband_hl = 1,
subband_lh = 2,
subband_hh = 3
subband_hh = 3,
subband_nb,
};

static const uint8_t default_qmat[][4][4] = {


Loading…
Cancel
Save