summaryrefslogtreecommitdiff
path: root/gst/rtp
diff options
context:
space:
mode:
authorLuis de Bethencourt <luis@debethencourt.com>2015-08-15 16:22:20 +0100
committerLuis de Bethencourt <luis@debethencourt.com>2015-08-15 16:22:22 +0100
commit51dfa3b135978bf523348209b0fdf9c21e252243 (patch)
tree9da2d208b39f81db81bf45023a8cf6660917524a /gst/rtp
parente6bd7d2792b73a3e23dbe109aa88637838c51b15 (diff)
downloadgstreamer-plugins-bad-51dfa3b135978bf523348209b0fdf9c21e252243.tar.gz
rtph265depay: make sure we call handle_nal for each NAL
Call handle_nal for each NAL in the STAP-A RTP packet. This makes sure we correctly extract the SPS and PPS. https://bugzilla.gnome.org/show_bug.cgi?id=730999
Diffstat (limited to 'gst/rtp')
-rw-r--r--gst/rtp/gstrtph265depay.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gst/rtp/gstrtph265depay.c b/gst/rtp/gstrtph265depay.c
index 9718d5831..bfc2e13a0 100644
--- a/gst/rtp/gstrtph265depay.c
+++ b/gst/rtp/gstrtph265depay.c
@@ -1311,7 +1311,11 @@ gst_rtp_h265_depay_process (GstRTPBaseDepayload * depayload, GstRTPBuffer * rtp)
gst_rtp_copy_meta (GST_ELEMENT_CAST (rtph265depay), outbuf, buf,
g_quark_from_static_string (GST_META_TAG_VIDEO_STR));
- gst_adapter_push (rtph265depay->adapter, outbuf);
+ outbuf =
+ gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf, timestamp,
+ marker);
+ if (outbuf)
+ gst_adapter_push (rtph265depay->adapter, outbuf);
payload += nalu_size;
payload_len -= nalu_size;