diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-12-22 12:01:57 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-12-23 21:17:44 +0000 |
commit | 98fed176cf28fac2a86b715c9d522e1cbecb45ff (patch) | |
tree | d35862f1296c3365f4e3941c297fd7df843d31ea /libavcodec | |
parent | 57e99ea44d37218a06bb593b811f8ad080d507ab (diff) | |
download | ffmpeg-98fed176cf28fac2a86b715c9d522e1cbecb45ff.tar.gz |
alsdec: improve warning message when invalid channel position is found
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/alsdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index 5b13c4146d..e86177a71c 100644 --- a/libavcodec/alsdec.c +++ b/libavcodec/alsdec.c @@ -358,7 +358,7 @@ static av_cold int read_specific_config(ALSDecContext *ctx) for (i = 0; i < avctx->channels; i++) { sconf->chan_pos[i] = get_bits(&gb, chan_pos_bits); 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; break; } |