summaryrefslogtreecommitdiff
path: root/gst/rtp
diff options
context:
space:
mode:
authorLuis de Bethencourt <luis.bg@samsung.com>2015-03-06 14:54:41 +0000
committerLuis de Bethencourt <luis.bg@samsung.com>2015-03-06 14:54:45 +0000
commit5f4b9a28192b8a689b4b408099d79dbbabaa1c8e (patch)
tree927bff5c1295a8ec4db95914482a40081dd38a18 /gst/rtp
parent3e38d3ae028fdac532bfb96e45799e4902c4d533 (diff)
downloadgstreamer-plugins-bad-5f4b9a28192b8a689b4b408099d79dbbabaa1c8e.tar.gz
rtp: donl_present variable unused
donl_present is not implemented, yet the value is set and checked a few times. Cleaning this. CID #1249687
Diffstat (limited to 'gst/rtp')
-rw-r--r--gst/rtp/gstrtph265depay.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/gst/rtp/gstrtph265depay.c b/gst/rtp/gstrtph265depay.c
index cb9339dae..941a5dbf8 100644
--- a/gst/rtp/gstrtph265depay.c
+++ b/gst/rtp/gstrtph265depay.c
@@ -1040,10 +1040,12 @@ gst_rtp_h265_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
guint outsize, nalu_size;
GstClockTime timestamp;
gboolean marker;
- gboolean donl_present = FALSE;
guint8 nuh_layer_id, nuh_temporal_id_plus1;
guint8 S, E;
guint16 nal_header;
+#if 0
+ gboolean donl_present = FALSE;
+#endif
timestamp = GST_BUFFER_TIMESTAMP (buf);
@@ -1128,8 +1130,10 @@ gst_rtp_h265_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
rtph265depay->wait_start = FALSE;
+#if 0
if (donl_present)
goto not_implemented_donl_present;
+#endif
while (payload_len > 2) {
@@ -1207,8 +1211,10 @@ gst_rtp_h265_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
if (rtph265depay->wait_start && !S)
goto waiting_start;
+#if 0
if (donl_present)
goto not_implemented_donl_present;
+#endif
if (S) {
@@ -1288,8 +1294,10 @@ gst_rtp_h265_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
/* All other cases: Single NAL unit packet Section 4.6 */
/* the entire payload is the output buffer */
+#if 0
if (donl_present)
goto not_implemented_donl_present;
+#endif
nalu_size = payload_len;
outsize = nalu_size + sizeof (sync_bytes);
@@ -1327,6 +1335,7 @@ waiting_start:
gst_rtp_buffer_unmap (&rtp);
return NULL;
}
+#if 0
not_implemented_donl_present:
{
GST_ELEMENT_ERROR (rtph265depay, STREAM, FORMAT,
@@ -1334,6 +1343,7 @@ not_implemented_donl_present:
gst_rtp_buffer_unmap (&rtp);
return NULL;
}
+#endif
not_implemented:
{
GST_ELEMENT_ERROR (rtph265depay, STREAM, FORMAT,