mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
libavcodec/ac3dec.c: Avoid unspecific -1 error code
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
c6db2e97dc
commit
8e1b5ba538
@ -452,7 +452,7 @@ static int decode_exponents(AC3DecodeContext *s,
|
||||
prevexp += dexp[i] - 2;
|
||||
if (prevexp > 24U) {
|
||||
av_log(s->avctx, AV_LOG_ERROR, "exponent %d is out-of-range\n", prevexp);
|
||||
return -1;
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
switch (group_size) {
|
||||
case 4: dexps[j++] = prevexp;
|
||||
|
Loading…
Reference in New Issue
Block a user