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
This commit is contained in:
Wim Taymans 2009-07-28 18:18:20 +02:00
parent 03348629ce
commit 9232e2278c

View file

@ -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");