mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-05 14:02:26 +00:00
Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
Original commit message from CVS: * gst-libs/gst/rtp/gstbasertpaudiopayload.c: * gst-libs/gst/rtp/gstbasertpdepayload.c: * gst-libs/gst/rtp/gstbasertppayload.c: * gst/ffmpegcolorspace/gstffmpegcolorspace.c: * gst/tcp/gstmultifdsink.c: * gst/tcp/gsttcpclientsink.c: * gst/tcp/gsttcpclientsrc.c: * gst/tcp/gsttcpserversink.c: * gst/tcp/gsttcpserversrc.c: * gst/videorate/gstvideorate.c: * gst/videotestsrc/gstvideotestsrc.c: * sys/v4l/gstv4ljpegsrc.c: * sys/v4l/gstv4lmjpegsink.c: * sys/v4l/gstv4lsrc.c: * tests/examples/seek/scrubby.c: * tests/examples/seek/seek.c: Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
This commit is contained in:
parent
c555fc4d0b
commit
114a273f27
17 changed files with 36 additions and 16 deletions
20
ChangeLog
20
ChangeLog
|
@ -1,3 +1,23 @@
|
|||
2006-06-23 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst-libs/gst/rtp/gstbasertpaudiopayload.c:
|
||||
* gst-libs/gst/rtp/gstbasertpdepayload.c:
|
||||
* gst-libs/gst/rtp/gstbasertppayload.c:
|
||||
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
|
||||
* gst/tcp/gstmultifdsink.c:
|
||||
* gst/tcp/gsttcpclientsink.c:
|
||||
* gst/tcp/gsttcpclientsrc.c:
|
||||
* gst/tcp/gsttcpserversink.c:
|
||||
* gst/tcp/gsttcpserversrc.c:
|
||||
* gst/videorate/gstvideorate.c:
|
||||
* gst/videotestsrc/gstvideotestsrc.c:
|
||||
* sys/v4l/gstv4ljpegsrc.c:
|
||||
* sys/v4l/gstv4lmjpegsink.c:
|
||||
* sys/v4l/gstv4lsrc.c:
|
||||
* tests/examples/seek/scrubby.c:
|
||||
* tests/examples/seek/seek.c:
|
||||
Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
|
||||
|
||||
2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include "gstbasertpaudiopayload.h"
|
||||
|
||||
GST_DEBUG_CATEGORY (basertpaudiopayload_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (basertpaudiopayload_debug);
|
||||
#define GST_CAT_DEFAULT (basertpaudiopayload_debug)
|
||||
|
||||
static void gst_basertpaudiopayload_finalize (GObject * object);
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#include "gstbasertpdepayload.h"
|
||||
|
||||
GST_DEBUG_CATEGORY (basertpdepayload_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (basertpdepayload_debug);
|
||||
#define GST_CAT_DEFAULT (basertpdepayload_debug)
|
||||
|
||||
/* Filter signals and args */
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include "gstbasertppayload.h"
|
||||
|
||||
GST_DEBUG_CATEGORY (basertppayload_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (basertppayload_debug);
|
||||
#define GST_CAT_DEFAULT (basertppayload_debug)
|
||||
|
||||
/* BaseRTPPayload signals and args */
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#include "gstffmpegcolorspace.h"
|
||||
#include "gstffmpegcodecmap.h"
|
||||
|
||||
GST_DEBUG_CATEGORY (ffmpegcolorspace_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (ffmpegcolorspace_debug);
|
||||
#define GST_CAT_DEFAULT ffmpegcolorspace_debug
|
||||
|
||||
/* elementfactory information */
|
||||
|
|
|
@ -155,7 +155,7 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS_ANY);
|
||||
|
||||
GST_DEBUG_CATEGORY (multifdsink_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (multifdsink_debug);
|
||||
#define GST_CAT_DEFAULT (multifdsink_debug)
|
||||
|
||||
/* MultiFdSink signals and args */
|
||||
|
|
|
@ -42,7 +42,7 @@ enum
|
|||
LAST_SIGNAL
|
||||
};
|
||||
|
||||
GST_DEBUG_CATEGORY (tcpclientsink_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (tcpclientsink_debug);
|
||||
#define GST_CAT_DEFAULT (tcpclientsink_debug)
|
||||
|
||||
enum
|
||||
|
|
|
@ -50,7 +50,7 @@ G_STMT_START { \
|
|||
} G_STMT_END
|
||||
|
||||
|
||||
GST_DEBUG_CATEGORY (tcpclientsrc_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (tcpclientsrc_debug);
|
||||
#define GST_CAT_DEFAULT tcpclientsrc_debug
|
||||
|
||||
#define MAX_READ_SIZE 4 * 1024
|
||||
|
|
|
@ -50,7 +50,7 @@ GST_ELEMENT_DETAILS ("TCP server sink",
|
|||
"Send data as a server over the network via TCP",
|
||||
"Thomas Vander Stichele <thomas at apestaart dot org>");
|
||||
|
||||
GST_DEBUG_CATEGORY (tcpserversink_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (tcpserversink_debug);
|
||||
#define GST_CAT_DEFAULT (tcpserversink_debug)
|
||||
|
||||
enum
|
||||
|
|
|
@ -50,7 +50,7 @@ G_STMT_START { \
|
|||
} G_STMT_END
|
||||
|
||||
|
||||
GST_DEBUG_CATEGORY (tcpserversrc_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (tcpserversrc_debug);
|
||||
#define GST_CAT_DEFAULT tcpserversrc_debug
|
||||
|
||||
#define TCP_DEFAULT_LISTEN_HOST NULL /* listen on all interfaces */
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
|
||||
#include "gstvideorate.h"
|
||||
|
||||
GST_DEBUG_CATEGORY (video_rate_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (video_rate_debug);
|
||||
#define GST_CAT_DEFAULT video_rate_debug
|
||||
|
||||
/* elementfactory information */
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
|
||||
#define USE_PEER_BUFFERALLOC
|
||||
|
||||
GST_DEBUG_CATEGORY (video_test_src_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (video_test_src_debug);
|
||||
#define GST_CAT_DEFAULT video_test_src_debug
|
||||
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ GST_ELEMENT_DETAILS ("Video (video4linux/raw) Jpeg Source",
|
|||
"Reads jpeg frames from a video4linux (eg ov519) device",
|
||||
"Jan Schmidt <thaytan@mad.scientist.com>");
|
||||
|
||||
GST_DEBUG_CATEGORY (v4ljpegsrc_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (v4ljpegsrc_debug);
|
||||
#define GST_CAT_DEFAULT v4ljpegsrc_debug
|
||||
|
||||
/* init functions */
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include <string.h>
|
||||
#include "v4lmjpegsink_calls.h"
|
||||
|
||||
GST_DEBUG_CATEGORY (v4lmjpegsink_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (v4lmjpegsink_debug);
|
||||
#define GST_CAT_DEFAULT v4lmjpegsink_debug
|
||||
|
||||
/* elementfactory information */
|
||||
|
|
|
@ -37,7 +37,7 @@ GST_ELEMENT_DETAILS ("Video (video4linux/raw) Source",
|
|||
"Ronald Bultje <rbultje@ronald.bitfreak.net>");
|
||||
|
||||
|
||||
GST_DEBUG_CATEGORY (v4lsrc_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (v4lsrc_debug);
|
||||
#define GST_CAT_DEFAULT v4lsrc_debug
|
||||
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include <gst/gst.h>
|
||||
#include <string.h>
|
||||
|
||||
GST_DEBUG_CATEGORY (scrubby_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (scrubby_debug);
|
||||
#define GST_CAT_DEFAULT (scrubby_debug)
|
||||
|
||||
static GstElement *pipeline;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include <gst/gst.h>
|
||||
#include <string.h>
|
||||
|
||||
GST_DEBUG_CATEGORY (seek_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (seek_debug);
|
||||
#define GST_CAT_DEFAULT (seek_debug)
|
||||
|
||||
static GList *seekable_pads = NULL;
|
||||
|
|
Loading…
Reference in a new issue