summaryrefslogtreecommitdiff
path: root/gst/rtp/gstrtpstorage.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-02-21 18:52:44 +0000
committerTim-Philipp Müller <tim@centricular.com>2018-02-21 19:01:15 +0000
commit3789afd491916103969ac26daaf40e7ceac27993 (patch)
tree9aa4e2e17aab19cedf20012e43c094f05fcb38f3 /gst/rtp/gstrtpstorage.c
parent359b0a86f18803f9d436f658822b8bddad27f7b3 (diff)
rtp: fec: fix build with gstreamer debug log system disabled
Diffstat (limited to 'gst/rtp/gstrtpstorage.c')
-rw-r--r--gst/rtp/gstrtpstorage.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gst/rtp/gstrtpstorage.c b/gst/rtp/gstrtpstorage.c
index 9c0db93af..d35b3def6 100644
--- a/gst/rtp/gstrtpstorage.c
+++ b/gst/rtp/gstrtpstorage.c
@@ -65,13 +65,6 @@ gst_rtp_storage_set_property (GObject * object, guint prop_id,
{
GstRtpStorage *self = GST_RTP_STORAGE (object);
- if (GST_LEVEL_DEBUG <= gst_debug_category_get_threshold (GST_CAT_DEFAULT)) {
- gchar *val_str = gst_value_serialize (value);
- GST_DEBUG_OBJECT (object, "Setting property \"%s\" to %s", pspec->name,
- val_str);
- g_free (val_str);
- }
-
switch (prop_id) {
case PROP_SIZE_TIME:
rtp_storage_set_size (self->storage, g_value_get_uint64 (value));
@@ -100,13 +93,6 @@ gst_rtp_storage_get_property (GObject * object, guint prop_id,
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
-
- if (GST_LEVEL_LOG <= gst_debug_category_get_threshold (GST_CAT_DEFAULT)) {
- gchar *val_str = gst_value_serialize (value);
- GST_LOG_OBJECT (object, "Returning property \"%s\" %s", pspec->name,
- val_str);
- g_free (val_str);
- }
}
static void