mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
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:
parent
552ce6874c
commit
baee313aa9
@ -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…
Reference in New Issue
Block a user