After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 574416 - rtp{theora,vorbis}depay should accept in-line configuration (too)
rtp{theora,vorbis}depay should accept in-line configuration (too)
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
git master
Other Linux
: Normal normal
: 0.10.23
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-03-06 20:14 UTC by Olivier Crête
Modified: 2010-04-30 14:29 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
rtptheoradepay: Ignore packets without a known codebook (965 bytes, patch)
2010-04-07 23:17 UTC, Olivier Crête
committed Details | Review
rtpvorbisdepay: also accept in-line configuration (4.32 KB, patch)
2010-04-22 12:34 UTC, Mark Nauwelaerts
committed Details | Review
rtptheoradepay: also accept in-band configuration (5.10 KB, patch)
2010-04-22 12:35 UTC, Mark Nauwelaerts
committed Details | Review

Description Olivier Crête 2009-03-06 20:14:16 UTC
rtptheoradepay should also accept in-band configuration.

It should also just drop the buffers until it gets a configuration string (instead of dying).
Comment 1 Olivier Crête 2010-04-07 23:16:10 UTC
For Vorbis, this is a MUST in RFC 5215. While out of band config is a SHOULD.
Comment 2 Olivier Crête 2010-04-07 23:17:10 UTC
Created attachment 158150 [details] [review]
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.
Comment 3 Mark Nauwelaerts 2010-04-22 12:34:07 UTC
Created attachment 159329 [details] [review]
rtpvorbisdepay: also accept in-line configuration
Comment 4 Mark Nauwelaerts 2010-04-22 12:35:05 UTC
Created attachment 159331 [details] [review]
rtptheoradepay: also accept in-band configuration
Comment 5 Olivier Crête 2010-04-29 21:05:05 UTC
Review of attachment 159331 [details] [review]:

::: gst/rtp/gstrtptheoradepay.c
@@ +626,3 @@
+    /* fatal, as we otherwise risk carrying on without output */
+    GST_ELEMENT_ERROR (rtptheoradepay, STREAM, DECODE,
+        (NULL), ("Packet contains invalid configuration"));

I would prefer if we just dropped packets until a valid config comes. And maybe emit some kind of non-fatal message. This way, when we implement AVPF, we can inform the other side to re-send it. That said, I plan to do AVPF in the not so distant future, so I'll figure out the message and stuff.
Comment 6 Mark Nauwelaerts 2010-04-30 14:29:04 UTC
Given the to-be-implemented-nature, leaving the GST_ELEMENT_ERROR for now (easy to change), the following commit should take care so far:


commit be5ffd96fe4289a37a34df289b1f98975acff293
Author: Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Date:   Thu Apr 22 12:28:22 2010 +0200

    rtptheoradepay: also accept in-band configuration

    Fixes #574416 (theora).

commit a344cfba2720a447bf354066dec4aaeb3b6c4d05
Author: Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Date:   Thu Apr 22 12:27:35 2010 +0200

    rtpvorbisdepay: also accept in-line configuration

    Fixes #574416 (vorbis).

commit 7bc3253761de5ed0f503b560adf7f0e6396a7c30
Author: Olivier Crête <olivier.crete@collabora.co.uk>
Date:   Wed Apr 7 17:21:55 2010 -0400

    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.