From 9f68303a2e290c14c91deb5ec33abe885980010e Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 28 Jul 2009 18:18:20 +0200 Subject: rtpsource: allow for NULL caps on buffers Add the NULL caps check where it matters and also cover another case of potential NULL caps. Fixes #590030 --- gst/rtpmanager/rtpsource.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gst/rtpmanager') diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c index 77d56c22..1e0b6c0d 100644 --- a/gst/rtpmanager/rtpsource.c +++ b/gst/rtpmanager/rtpsource.c @@ -628,7 +628,7 @@ rtp_source_update_caps (RTPSource * src, GstCaps * caps) gint ival; /* nothing changed, return */ - if (src->caps == caps) + if (caps == NULL || src->caps == caps) return; s = gst_caps_get_structure (caps, 0); @@ -981,8 +981,7 @@ rtp_source_process_rtp (RTPSource * src, GstBuffer * buffer, seqnr = gst_rtp_buffer_get_seq (buffer); - if (GST_BUFFER_CAPS (buffer)) - rtp_source_update_caps (src, GST_BUFFER_CAPS (buffer)); + rtp_source_update_caps (src, GST_BUFFER_CAPS (buffer)); if (stats->cycles == -1) { GST_DEBUG ("received first buffer"); -- cgit