diff options
Diffstat (limited to 'gst/rtp')
-rw-r--r-- | gst/rtp/gstrtpamrpay.c | 2 | ||||
-rw-r--r-- | gst/rtp/gstrtpdepay.c | 2 | ||||
-rw-r--r-- | gst/rtp/gstrtpilbcpay.c | 6 | ||||
-rw-r--r-- | gst/rtp/gstrtpmp4gpay.c | 2 | ||||
-rw-r--r-- | gst/rtp/gstrtpmp4vpay.c | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/gst/rtp/gstrtpamrpay.c b/gst/rtp/gstrtpamrpay.c index fd715ac2..b7e15e67 100644 --- a/gst/rtp/gstrtpamrpay.c +++ b/gst/rtp/gstrtpamrpay.c @@ -27,7 +27,7 @@ #include "gstrtpamrpay.h" -GST_DEBUG_CATEGORY (rtpamrpay_debug); +GST_DEBUG_CATEGORY_STATIC (rtpamrpay_debug); #define GST_CAT_DEFAULT (rtpamrpay_debug) /* references: diff --git a/gst/rtp/gstrtpdepay.c b/gst/rtp/gstrtpdepay.c index d5623e8f..c309ae31 100644 --- a/gst/rtp/gstrtpdepay.c +++ b/gst/rtp/gstrtpdepay.c @@ -20,7 +20,7 @@ #include "gstrtpdepay.h" -GST_DEBUG_CATEGORY (rtpdepay_debug); +GST_DEBUG_CATEGORY_STATIC (rtpdepay_debug); #define GST_CAT_DEFAULT (rtpdepay_debug) /* elementfactory information */ diff --git a/gst/rtp/gstrtpilbcpay.c b/gst/rtp/gstrtpilbcpay.c index 3882556a..cb9409cd 100644 --- a/gst/rtp/gstrtpilbcpay.c +++ b/gst/rtp/gstrtpilbcpay.c @@ -32,7 +32,7 @@ static GstElementDetails gst_rtpilbcpay_details = { "Philippe Kalaf <philippe.kalaf@collabora.co.uk>" }; -GST_DEBUG_CATEGORY (rtpilbcpay_debug); +GST_DEBUG_CATEGORY_STATIC (rtpilbcpay_debug); #define GST_CAT_DEFAULT (rtpilbcpay_debug) static GstStaticPadTemplate gst_rtpilbcpay_sink_template = @@ -144,8 +144,8 @@ gst_rtpilbcpay_setcaps (GstBaseRTPPayload * basertppayload, GstCaps * caps) gst_basertppayload_set_outcaps (basertppayload, "mode", G_TYPE_INT, mode, NULL); if (mode != rtpilbcpay->mode && rtpilbcpay->mode != -1) { - GST_ERROR_OBJECT (rtpilbcpay, "Mode has changed from %d to %d! \ - Mode cannot change while streaming", rtpilbcpay->mode, mode); + GST_ERROR_OBJECT (rtpilbcpay, "Mode has changed from %d to %d! " + "Mode cannot change while streaming", rtpilbcpay->mode, mode); return FALSE; } rtpilbcpay->mode = mode; diff --git a/gst/rtp/gstrtpmp4gpay.c b/gst/rtp/gstrtpmp4gpay.c index abe60892..e09195e8 100644 --- a/gst/rtp/gstrtpmp4gpay.c +++ b/gst/rtp/gstrtpmp4gpay.c @@ -27,7 +27,7 @@ #include "gstrtpmp4gpay.h" -GST_DEBUG_CATEGORY (rtpmp4gpay_debug); +GST_DEBUG_CATEGORY_STATIC (rtpmp4gpay_debug); #define GST_CAT_DEFAULT (rtpmp4gpay_debug) /* elementfactory information */ diff --git a/gst/rtp/gstrtpmp4vpay.c b/gst/rtp/gstrtpmp4vpay.c index 1d4c9c1e..fc091e71 100644 --- a/gst/rtp/gstrtpmp4vpay.c +++ b/gst/rtp/gstrtpmp4vpay.c @@ -27,7 +27,7 @@ #include "gstrtpmp4vpay.h" -GST_DEBUG_CATEGORY (rtpmp4vpay_debug); +GST_DEBUG_CATEGORY_STATIC (rtpmp4vpay_debug); #define GST_CAT_DEFAULT (rtpmp4vpay_debug) /* elementfactory information */ |