mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
metadata: use a non-DEFAULT proper debug category in helper files
This commit is contained in:
parent
d8117471f6
commit
5f4f24fb76
7 changed files with 17 additions and 2 deletions
|
@ -129,7 +129,7 @@ enum
|
|||
*/
|
||||
|
||||
|
||||
GST_DEBUG_CATEGORY_STATIC (gst_metadata_demux_debug);
|
||||
GST_DEBUG_CATEGORY (gst_metadata_demux_debug);
|
||||
#define GST_CAT_DEFAULT gst_metadata_demux_debug
|
||||
|
||||
#define GOTO_DONE_IF_NULL(ptr) \
|
||||
|
|
|
@ -111,7 +111,7 @@ enum
|
|||
*/
|
||||
|
||||
|
||||
GST_DEBUG_CATEGORY_STATIC (gst_metadata_mux_debug);
|
||||
GST_DEBUG_CATEGORY (gst_metadata_mux_debug);
|
||||
#define GST_CAT_DEFAULT gst_metadata_mux_debug
|
||||
|
||||
#define GOTO_DONE_IF_NULL(ptr) \
|
||||
|
|
|
@ -85,6 +85,9 @@
|
|||
#include <libiptcdata/iptc-jpeg.h>
|
||||
#endif
|
||||
|
||||
GST_DEBUG_CATEGORY_EXTERN (gst_metadata_mux_debug);
|
||||
#define GST_CAT_DEFAULT gst_metadata_mux_debug
|
||||
|
||||
/*
|
||||
* defines and macros
|
||||
*/
|
||||
|
|
|
@ -80,6 +80,9 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
GST_DEBUG_CATEGORY_EXTERN (gst_metadata_mux_debug);
|
||||
#define GST_CAT_DEFAULT gst_metadata_mux_debug
|
||||
|
||||
/*
|
||||
* defines and macros
|
||||
*/
|
||||
|
|
|
@ -90,6 +90,9 @@
|
|||
#include "metadataiptc.h"
|
||||
#endif
|
||||
|
||||
GST_DEBUG_CATEGORY_EXTERN (gst_metadata_demux_debug);
|
||||
#define GST_CAT_DEFAULT gst_metadata_demux_debug
|
||||
|
||||
/*
|
||||
* defines and macros
|
||||
*/
|
||||
|
|
|
@ -70,6 +70,9 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
GST_DEBUG_CATEGORY_EXTERN (gst_metadata_demux_debug);
|
||||
#define GST_CAT_DEFAULT gst_metadata_demux_debug
|
||||
|
||||
/*
|
||||
* defines and macros
|
||||
*/
|
||||
|
|
|
@ -55,6 +55,9 @@
|
|||
#include "metadataparseutil.h"
|
||||
#include <string.h>
|
||||
|
||||
GST_DEBUG_CATEGORY_EXTERN (gst_metadata_demux_debug);
|
||||
#define GST_CAT_DEFAULT gst_metadata_demux_debug
|
||||
|
||||
/*
|
||||
* extern functions implementations
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue