amldemux: CF2 modify the tag of amlqtdemux [1/1]

PD#SWPL-171687

Problem:
the tag of amlqtdemux is default

Solution:
modify the tag of amlqtdemux

Verify:
yocto-4.0

Signed-off-by: zengliang.li <zengliang.li@amlogic.com>
Change-Id: I57fe8fce313c2493243b939cbf5d4b79775a26d8
diff --git a/aml-qtdemux/aml-qtdemux-webvtt.c b/aml-qtdemux/aml-qtdemux-webvtt.c
index 817c7c1..a2e57d1 100644
--- a/aml-qtdemux/aml-qtdemux-webvtt.c
+++ b/aml-qtdemux/aml-qtdemux-webvtt.c
@@ -33,8 +33,8 @@
 #include <stdlib.h>
 #include <string.h>
 
-GST_DEBUG_CATEGORY_EXTERN (qtdemux_debug);
-#define GST_AML_CAT_DEFAULT qtdemux_debug
+GST_DEBUG_CATEGORY_EXTERN (aml_qtdemux_debug);
+#define GST_CAT_DEFAULT aml_qtdemux_debug
 
 gboolean
 aml_qtdemux_webvtt_is_empty (GstAmlQTDemux * demux, guint8 * data, gsize size)
diff --git a/aml-qtdemux/aml-qtdemux.c b/aml-qtdemux/aml-qtdemux.c
index 4e32adc..12120ad 100644
--- a/aml-qtdemux/aml-qtdemux.c
+++ b/aml-qtdemux/aml-qtdemux.c
@@ -109,8 +109,8 @@
 
 #define AML_CUR_STREAM(s) (&((s)->stsd_entries[(s)->cur_stsd_entry_index]))
 
-GST_DEBUG_CATEGORY (qtdemux_debug);
-#define GST_AML_CAT_DEFAULT qtdemux_debug
+GST_DEBUG_CATEGORY (aml_qtdemux_debug);
+#define GST_CAT_DEFAULT aml_qtdemux_debug
 
 typedef struct _AmlQtDemuxCencSampleSetInfo AmlQtDemuxCencSampleSetInfo;
 typedef struct _AmlQtDemuxAavdEncryptionInfo AmlQtDemuxAavdEncryptionInfo;
@@ -424,7 +424,7 @@
       "Demultiplex a QuickTime file into audio and video streams",
       "David Schleef <ds@schleef.org>, Wim Taymans <wim@fluendo.com>");
 
-  GST_DEBUG_CATEGORY_INIT (qtdemux_debug, "qtdemux", 0, "qtdemux plugin");
+  GST_DEBUG_CATEGORY_INIT (aml_qtdemux_debug, "amlqtdemux", 0, "amlqtdemux plugin");
   gst_riff_init ();
 }
 
diff --git a/aml-qtdemux/aml-qtdemux_debug.h b/aml-qtdemux/aml-qtdemux_debug.h
index 855c1ab..7b53379 100644
--- a/aml-qtdemux/aml-qtdemux_debug.h
+++ b/aml-qtdemux/aml-qtdemux_debug.h
@@ -5,7 +5,7 @@
 
 G_BEGIN_DECLS
 
-GST_DEBUG_CATEGORY_EXTERN (qtdemux_debug);
+GST_DEBUG_CATEGORY_EXTERN (aml_qtdemux_debug);
 
 G_END_DECLS
 
diff --git a/aml-qtdemux/aml-qtdemux_dump.c b/aml-qtdemux/aml-qtdemux_dump.c
index c37bf96..e3d40c2 100644
--- a/aml-qtdemux/aml-qtdemux_dump.c
+++ b/aml-qtdemux/aml-qtdemux_dump.c
@@ -28,7 +28,7 @@
 
 #include <string.h>
 
-#define GST_AML_CAT_DEFAULT qtdemux_debug
+#define GST_CAT_DEFAULT aml_qtdemux_debug
 
 #define GET_UINT8(data)   gst_byte_reader_get_uint8_unchecked(data)
 #define GET_UINT16(data)  gst_byte_reader_get_uint16_be_unchecked(data)
@@ -1103,7 +1103,7 @@
 {
 #ifndef GST_DISABLE_GST_DEBUG
   /* Only traverse/dump if we know it will be outputted in the end */
-  if (qtdemux_debug->threshold < GST_LEVEL_LOG)
+  if (aml_qtdemux_debug->threshold < GST_LEVEL_LOG)
     return TRUE;
 
   g_node_traverse (node, G_PRE_ORDER, G_TRAVERSE_ALL, -1,
diff --git a/aml-qtdemux/aml-qtdemux_lang.c b/aml-qtdemux/aml-qtdemux_lang.c
index 840fe5e..e4bd292 100644
--- a/aml-qtdemux/aml-qtdemux_lang.c
+++ b/aml-qtdemux/aml-qtdemux_lang.c
@@ -22,7 +22,7 @@
 
 #include <string.h>
 
-#define GST_AML_CAT_DEFAULT qtdemux_debug
+#define GST_CAT_DEFAULT aml_qtdemux_debug
 
 /* http://developer.apple.com/mac/library/documentation/QuickTime/QTFF/QTFFChap4/qtff4.html */
 
diff --git a/aml-qtdemux/aml-qtdemux_types.c b/aml-qtdemux/aml-qtdemux_types.c
index 95489fb..fb4a1e0 100644
--- a/aml-qtdemux/aml-qtdemux_types.c
+++ b/aml-qtdemux/aml-qtdemux_types.c
@@ -22,7 +22,7 @@
 #include "aml-qtdemux_dump.h"
 #include "aml-fourcc.h"
 
-#define GST_AML_CAT_DEFAULT qtdemux_debug
+#define GST_CAT_DEFAULT aml_qtdemux_debug
 
 static const AmlQtNodeType aml_qt_node_types[] = {
   {AML_FOURCC_moov, "movie", AML_QT_FLAG_CONTAINER,},
diff --git a/aml-qtdemux/gstamlisoff.c b/aml-qtdemux/gstamlisoff.c
index f314a82..191a47d 100644
--- a/aml-qtdemux/gstamlisoff.c
+++ b/aml-qtdemux/gstamlisoff.c
@@ -26,7 +26,7 @@
 #include "gstamlisoff.h"
 #include <gst/base/gstbytereader.h>
 
-#define GST_AML_CAT_DEFAULT qtdemux_debug
+#define GST_CAT_DEFAULT aml_qtdemux_debug
 
 void
 gst_aml_isoff_qt_sidx_parser_init (GstAmlSidxParser * parser)