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 783248 - rtpsession: print value of unknown RTCP Payload Type
rtpsession: print value of unknown RTCP Payload Type
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
git master
Other Linux
: Normal enhancement
: 1.12.1
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2017-05-30 20:20 UTC by Juan Navarro
Modified: 2017-06-12 07:07 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch (1.01 KB, patch)
2017-05-30 20:25 UTC, Juan Navarro
committed Details | Review

Description Juan Navarro 2017-05-30 20:20:23 UTC
When a RTCP packet with unknown Packet Type is received, rtpsession.c does
GST_WARNING ("got unknown RTCP packet");

It would be useful to indicate the Packet Type, to ease understanding of what is going on. This situation happened recently to me while receiving RTCP Extended Reports (RTCP XR), which have PT=207 and are not supported by GStreamer.
Comment 1 Juan Navarro 2017-05-30 20:25:20 UTC
Created attachment 352902 [details] [review]
Patch
Comment 2 Sebastian Dröge (slomo) 2017-05-31 07:20:48 UTC
commit 72d2afda1876a3c0a263a125a965b32240e0a806
Author: Juan Navarro <juan.navarro@gmx.es>
Date:   Tue May 30 22:23:10 2017 +0200

    rtpsession: print value of unknown RTCP Payload Type
    
    This adds printing the actual value of any unknown RTCP PT
    to the already existing WARNING log message.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=783248