GNOME Bugzilla – Bug 725334
rtsp-sdp: The sdp framesize attribute should have the payload type
Last modified: 2015-03-09 09:09:11 UTC
The sdp framesize attribute (discribed in RFC6064) should look like a=framesize:<payload type number> <width>-<height>. If it should be included, a payloader add a-framesize = <width>-<height> to the caps. We need to insert the payload number before we add this to the sdp.
Created attachment 270492 [details] [review] add payload type to framesize attribute
The same (just the other way around) is also required for rtspsrc and sdpdemux, right? commit 9dadaed2fd598a0abe146d042177086fdbeaed4a Author: Linus Svensson <linussn@axis.com> Date: Wed Feb 26 22:34:06 2014 +0100 rtsp-sdp: add payload type to the sdp framesize attribute The sdp framesize attribute is desribed in RFC6064. It is specified for payloading of H263 and has the following form a=framesize:<payload type> <width>-<height>. The <width>-<height> part should be added to the caps in a payloader and the <payload type> should be added by the rtsp-server. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=725334
I made a corresponding change for rtspsrc in https://bugzilla.gnome.org/show_bug.cgi?id=725335.