summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2008-05-14 21:02:19 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-08-11 02:30:35 +0100
commit2506d13ecc0799000634e7190a4ff526b7ab5980 (patch)
treec3bdafaa78359633ef33e740943a702eccbc6764
parentcd00eb71b42873ece10c2af6f7021c8b7fa229bb (diff)
gst/rtpmanager/gstrtpjitterbuffer.c: Simply drop bad RTP packets with a warning instead of just posting an error and ...
Original commit message from CVS: * gst/rtpmanager/gstrtpjitterbuffer.c: (gst_rtp_jitter_buffer_chain): Simply drop bad RTP packets with a warning instead of just posting an error and stopping. This is a perfectly recoverable event and we don't force people to use an rtpbin to filter out bad packets first.
-rw-r--r--gst/rtpmanager/gstrtpjitterbuffer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/rtpmanager/gstrtpjitterbuffer.c b/gst/rtpmanager/gstrtpjitterbuffer.c
index c62a6c50..46439dc1 100644
--- a/gst/rtpmanager/gstrtpjitterbuffer.c
+++ b/gst/rtpmanager/gstrtpjitterbuffer.c
@@ -945,12 +945,12 @@ finished:
/* ERRORS */
invalid_buffer:
{
- /* this is fatal and should be filtered earlier */
- GST_ELEMENT_ERROR (jitterbuffer, STREAM, DECODE, (NULL),
- ("Received invalid RTP payload"));
+ /* this is not fatal but should be filtered earlier */
+ GST_ELEMENT_WARNING (jitterbuffer, STREAM, DECODE, (NULL),
+ ("Received invalid RTP payload, dropping"));
gst_buffer_unref (buffer);
gst_object_unref (jitterbuffer);
- return GST_FLOW_ERROR;
+ return GST_FLOW_OK;
}
not_negotiated:
{