mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
rtspsrc: use new option parser function
This commit is contained in:
parent
5dee61a8d5
commit
64cdbb77a9
1 changed files with 1 additions and 21 deletions
|
@ -4807,9 +4807,7 @@ gst_rtspsrc_parse_methods (GstRTSPSrc * src, GstRTSPMessage * response)
|
|||
{
|
||||
GstRTSPHeaderField field;
|
||||
gchar *respoptions;
|
||||
gchar **options;
|
||||
gint indx = 0;
|
||||
gint i;
|
||||
|
||||
/* reset supported methods */
|
||||
src->methods = 0;
|
||||
|
@ -4827,25 +4825,7 @@ gst_rtspsrc_parse_methods (GstRTSPSrc * src, GstRTSPMessage * response)
|
|||
if (!respoptions)
|
||||
break;
|
||||
|
||||
/* If we get here, the server gave a list of supported methods, parse
|
||||
* them here. The string is like:
|
||||
*
|
||||
* OPTIONS, DESCRIBE, ANNOUNCE, PLAY, SETUP, ...
|
||||
*/
|
||||
options = g_strsplit (respoptions, ",", 0);
|
||||
|
||||
for (i = 0; options[i]; i++) {
|
||||
gchar *stripped;
|
||||
gint method;
|
||||
|
||||
stripped = g_strstrip (options[i]);
|
||||
method = gst_rtsp_find_method (stripped);
|
||||
|
||||
/* keep bitfield of supported methods */
|
||||
if (method != GST_RTSP_INVALID)
|
||||
src->methods |= method;
|
||||
}
|
||||
g_strfreev (options);
|
||||
src->methods |= gst_rtsp_options_from_text (respoptions);
|
||||
|
||||
indx++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue