mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
mpapay: add debug category
This commit is contained in:
parent
dde7af4b9d
commit
e2f4fe8d3d
1 changed files with 6 additions and 0 deletions
|
@ -27,6 +27,9 @@
|
|||
|
||||
#include "gstrtpmpapay.h"
|
||||
|
||||
GST_DEBUG_CATEGORY_STATIC (rtpmpapay_debug);
|
||||
#define GST_CAT_DEFAULT (rtpmpapay_debug)
|
||||
|
||||
static GstStaticPadTemplate gst_rtp_mpa_pay_sink_template =
|
||||
GST_STATIC_PAD_TEMPLATE ("sink",
|
||||
GST_PAD_SINK,
|
||||
|
@ -96,6 +99,9 @@ gst_rtp_mpa_pay_class_init (GstRtpMPAPayClass * klass)
|
|||
gstbasertppayload_class->set_caps = gst_rtp_mpa_pay_setcaps;
|
||||
gstbasertppayload_class->handle_event = gst_rtp_mpa_pay_handle_event;
|
||||
gstbasertppayload_class->handle_buffer = gst_rtp_mpa_pay_handle_buffer;
|
||||
|
||||
GST_DEBUG_CATEGORY_INIT (rtpmpapay_debug, "rtpmpapay", 0,
|
||||
"MPEG Audio RTP Depayloader");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue