diff options
author | Mathieu Duponchelle <mathieu@centricular.com> | 2018-02-24 20:05:05 +0100 |
---|---|---|
committer | Mathieu Duponchelle <mathieu@centricular.com> | 2018-02-24 20:06:54 +0100 |
commit | efb4ee191965bed523c2bed20eb5bb501c55130a (patch) | |
tree | bf3b469044f5c1f078849d7d480d48ec1cfb04ab | |
parent | e3a3d4fb7635108fd12f93bb96b2bce1bfaab382 (diff) |
rtpgstdepay: do not warn when caps were not yet received
It is expected that when connecting to a stream that has
already started, the caps will only arrive at the interval
specified on rtpgstpay, we shouldn't be warning as this is
a normal mode of operation.
https://bugzilla.gnome.org/show_bug.cgi?id=793798
-rw-r--r-- | gst/rtp/gstrtpgstdepay.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gst/rtp/gstrtpgstdepay.c b/gst/rtp/gstrtpgstdepay.c index 7d057428d..39028c9ce 100644 --- a/gst/rtp/gstrtpgstdepay.c +++ b/gst/rtp/gstrtpgstdepay.c @@ -556,8 +556,7 @@ no_event: } missing_caps: { - GST_ELEMENT_WARNING (rtpgstdepay, STREAM, DECODE, - ("Missing caps %u.", CV), (NULL)); + GST_INFO_OBJECT (rtpgstdepay, "No caps received yet %u", CV); gst_buffer_unref (outbuf); return NULL; } |