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>
This commit is contained in:
Michael Niedermayer 2014-09-08 20:47:47 +02:00
parent 552ce6874c
commit baee313aa9
1 changed files with 2 additions and 1 deletions

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] = {