[FFmpeg-cvslog] avcodec/aacdec: warn user when remapping streams.

Benoit Fouet git at videolan.org
Fri Oct 24 18:59:58 CEST 2014


ffmpeg | branch: master | Benoit Fouet <benoit.fouet at free.fr> | Fri Oct 24 12:31:45 2014 +0200| [e56425d1a71828c32f7f355f0979534e1007078f] | committer: Michael Niedermayer

avcodec/aacdec: warn user when remapping streams.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e56425d1a71828c32f7f355f0979534e1007078f
---

 libavcodec/aac.h    |    1 +
 libavcodec/aacdec.c |   12 ++++++++++++
 2 files changed, 13 insertions(+)

diff --git a/libavcodec/aac.h b/libavcodec/aac.h
index 1bcd95c..387e103 100644
--- a/libavcodec/aac.h
+++ b/libavcodec/aac.h
@@ -274,6 +274,7 @@ struct AACContext {
     ChannelElement          *che[4][MAX_ELEM_ID];
     ChannelElement  *tag_che_map[4][MAX_ELEM_ID];
     int tags_mapped;
+    int warned_remapping_once;
     /** @} */
 
     /**
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c
index ed12e7d..66464344 100644
--- a/libavcodec/aacdec.c
+++ b/libavcodec/aacdec.c
@@ -621,6 +621,12 @@ static ChannelElement *get_che(AACContext *ac, int type, int elem_id)
          * If we seem to have encountered such a stream, transfer
          * the LFE[0] element to the SCE[1]'s mapping */
         if (ac->tags_mapped == tags_per_config[ac->oc[1].m4ac.chan_config] - 1 && (type == TYPE_LFE || type == TYPE_SCE)) {
+            if (!ac->warned_remapping_once && (type != TYPE_LFE || elem_id != 0)) {
+                av_log(ac->avctx, AV_LOG_WARNING,
+                   "This stream seems to incorrectly report its last channel as %s[%d], mapping to LFE[0]\n",
+                   type == TYPE_SCE ? "SCE" : "LFE", elem_id);
+                ac->warned_remapping_once++;
+            }
             ac->tags_mapped++;
             return ac->tag_che_map[type][elem_id] = ac->che[TYPE_LFE][0];
         }
@@ -637,6 +643,12 @@ static ChannelElement *get_che(AACContext *ac, int type, int elem_id)
          * If we seem to have encountered such a stream, transfer
          * the SCE[1] element to the LFE[0]'s mapping */
         if (ac->tags_mapped == tags_per_config[ac->oc[1].m4ac.chan_config] - 1 && (type == TYPE_LFE || type == TYPE_SCE)) {
+            if (!ac->warned_remapping_once && (type != TYPE_SCE || elem_id != 1)) {
+                av_log(ac->avctx, AV_LOG_WARNING,
+                   "This stream seems to incorrectly report its last channel as %s[%d], mapping to SCE[1]\n",
+                   type == TYPE_SCE ? "SCE" : "LFE", elem_id);
+                ac->warned_remapping_once++;
+            }
             ac->tags_mapped++;
             return ac->tag_che_map[type][elem_id] = ac->che[TYPE_SCE][1];
         }



More information about the ffmpeg-cvslog mailing list