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 507940 - rtpsession:rtp_send_src shouldnt not have fixed caps
rtpsession:rtp_send_src shouldnt not have fixed caps
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
git master
Other Linux
: Normal normal
: 0.10.6
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-01-07 22:00 UTC by Olivier Crête
Modified: 2008-01-09 14:39 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Olivier Crête 2008-01-07 22:00:37 UTC
The rtpsession:rtp_send_src pad currently has gst_pad_use_fixed_caps() called on it, this prevents changing the payload type (or sending multiple payload types for things like DTMF or CN). Just removing the call to gst_pad_use_fixed_caps() in gstrtpsession.c:create_send_rtp_sink() fixes the problem for me.
Comment 1 Wim Taymans 2008-01-09 14:39:43 UTC
        * gst/rtpmanager/gstrtpsession.c: (create_send_rtp_sink):
        Don't set fixed caps, we can basically do everything the upsteam peer
        pad can renegotiate to. Fixes #507940.