From 7bc3253761de5ed0f503b560adf7f0e6396a7c30 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Olivier=20Cr=C3=AAte?= Date: Wed, 7 Apr 2010 17:21:55 -0400 Subject: [PATCH] rtptheoradepay: Ignore packets without a known codebook Don't produce an error if a packet is received without a valid codebook, it's possible that the codebook will just be coming later. See #574416. --- gst/rtp/gstrtptheoradepay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/rtp/gstrtptheoradepay.c b/gst/rtp/gstrtptheoradepay.c index 336afaf09a..226e85f647 100644 --- a/gst/rtp/gstrtptheoradepay.c +++ b/gst/rtp/gstrtptheoradepay.c @@ -555,7 +555,7 @@ no_output: /* ERORRS */ switch_failed: { - GST_ELEMENT_ERROR (rtptheoradepay, STREAM, DECODE, + GST_ELEMENT_WARNING (rtptheoradepay, STREAM, DECODE, (NULL), ("Could not switch codebooks")); return NULL; } -- 2.34.1