rtpptdemux: Don't GST_FLOW_ERROR when ignoring invalid packets
authorJan Schmidt <jan@centricular.com>
Sun, 29 May 2022 10:27:38 +0000 (20:27 +1000)
committerJan Schmidt <jan@centricular.com>
Sun, 29 May 2022 10:27:38 +0000 (20:27 +1000)
https://bugzilla.gnome.org/show_bug.cgi?id=741398 changed
rtpptdemux in 2014 to not post a GST_ELEMENT_ERROR on the
bus when dropping an invalid (non-RTP) packet, but still
returned GST_FLOW_ERROR upstream - so the pipeline still
stops, but now without a useful bus error.

Return GST_FLOW_OK instead, so the pipeline keeps
running. Some old telephony equipment can send invalid
packets before the real RTP traffic starts.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2520>

subprojects/gst-plugins-good/gst/rtpmanager/gstrtpptdemux.c

index 6759e69..5cbbc72 100644 (file)
@@ -567,7 +567,7 @@ invalid_buffer:
     GST_ELEMENT_WARNING (rtpdemux, STREAM, DEMUX, (NULL),
         ("Dropping invalid RTP payload"));
     gst_buffer_unref (buf);
-    return GST_FLOW_ERROR;
+    return GST_FLOW_OK;
   }
 no_caps:
   {