mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
alsdec: improve warning message when invalid channel position is found
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
57e99ea44d
commit
98fed176cf
@ -358,7 +358,7 @@ static av_cold int read_specific_config(ALSDecContext *ctx)
|
|||||||
for (i = 0; i < avctx->channels; i++) {
|
for (i = 0; i < avctx->channels; i++) {
|
||||||
sconf->chan_pos[i] = get_bits(&gb, chan_pos_bits);
|
sconf->chan_pos[i] = get_bits(&gb, chan_pos_bits);
|
||||||
if (sconf->chan_pos[i] >= avctx->channels) {
|
if (sconf->chan_pos[i] >= avctx->channels) {
|
||||||
av_log(avctx, AV_LOG_WARNING, "Invalid original channel position.\n");
|
av_log(avctx, AV_LOG_WARNING, "Invalid channel reordering.\n");
|
||||||
sconf->chan_sort = 0;
|
sconf->chan_sort = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user