summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Dutka <mail@michael-dutka.de>2016-12-15 12:38:40 +0100
committerTim-Philipp Müller <tim@centricular.com>2017-03-10 18:50:03 +0000
commit1bc389997c520a253d9579406dc8f8fc88ff6cf2 (patch)
treea4f7787ad12699f8f4f41b8d5e061aa2ea39255e
parentec1769b0480e60ee42ecf4a1f95ee33c94d0a3af (diff)
downloadgstreamer-plugins-good-1bc389997c520a253d9579406dc8f8fc88ff6cf2.tar.gz
rtph264depay, rtph265depay: remove stray g_debug()
https://bugzilla.gnome.org/show_bug.cgi?id=779858
-rw-r--r--gst/rtp/gstrtph264depay.c1
-rw-r--r--gst/rtp/gstrtph265depay.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/gst/rtp/gstrtph264depay.c b/gst/rtp/gstrtph264depay.c
index ff5415c26..cd2795933 100644
--- a/gst/rtp/gstrtph264depay.c
+++ b/gst/rtp/gstrtph264depay.c
@@ -299,7 +299,6 @@ gst_rtp_h264_set_src_caps (GstRtpH264Depay * rtph264depay)
len += 2 + gst_buffer_get_size (g_ptr_array_index (rtph264depay->pps, i));
codec_data = gst_buffer_new_and_alloc (len);
- g_debug ("alloc_len: %u", len);
gst_buffer_map (codec_data, &map, GST_MAP_READWRITE);
data = map.data;
diff --git a/gst/rtp/gstrtph265depay.c b/gst/rtp/gstrtph265depay.c
index f0dcb4bb7..f139dc0aa 100644
--- a/gst/rtp/gstrtph265depay.c
+++ b/gst/rtp/gstrtph265depay.c
@@ -353,7 +353,6 @@ gst_rtp_h265_set_src_caps (GstRtpH265Depay * rtph265depay)
num_sps, num_pps);
codec_data = gst_buffer_new_and_alloc (len);
- g_debug ("alloc_len: %u", len);
gst_buffer_map (codec_data, &map, GST_MAP_READWRITE);
data = map.data;