]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/aacenc: report channel layout by name
authorMoritz Barsnick <barsnick@gmx.net>
Fri, 6 Jul 2018 21:49:50 +0000 (23:49 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Sun, 9 Sep 2018 10:01:07 +0000 (12:01 +0200)
Possibly useful in the error case.

Signed-off-by: Moritz Barsnick <barsnick@gmx.net>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/aacenc.c

index 6d94c769059940baf7f417673ab1371fbf66d6d0..4d0abb107f3397452323c426276b555f5cc66d6c 100644 (file)
@@ -982,11 +982,13 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
     }
 
     if (s->needs_pce) {
+        char buf[64];
         for (i = 0; i < FF_ARRAY_ELEMS(aac_pce_configs); i++)
             if (avctx->channel_layout == aac_pce_configs[i].layout)
                 break;
-        ERROR_IF(i == FF_ARRAY_ELEMS(aac_pce_configs), "Unsupported channel layout\n");
-        av_log(avctx, AV_LOG_INFO, "Using a PCE to encode channel layout\n");
+        av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
+        ERROR_IF(i == FF_ARRAY_ELEMS(aac_pce_configs), "Unsupported channel layout \"%s\"\n", buf);
+        av_log(avctx, AV_LOG_INFO, "Using a PCE to encode channel layout \"%s\"\n", buf);
         s->pce = aac_pce_configs[i];
         s->reorder_map = s->pce.reorder_map;
         s->chan_map = s->pce.config_map;