From 98fed176cf28fac2a86b715c9d522e1cbecb45ff Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sat, 22 Dec 2012 12:01:57 +0000 Subject: [PATCH] alsdec: improve warning message when invalid channel position is found Signed-off-by: Paul B Mahol --- libavcodec/alsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }