mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 20:42:30 +00:00
rtspsrc: Trivial fix to check correct condition
When checking for describe method, because of missing parentheses, wrong condition is being checked, which will result in wrong behavior. https://bugzilla.gnome.org/show_bug.cgi?id=753912
This commit is contained in:
parent
77c9e2cd4d
commit
ba8cda54f4
1 changed files with 1 additions and 1 deletions
|
@ -7214,7 +7214,7 @@ restart:
|
|||
}
|
||||
|
||||
/* it could be that the DESCRIBE method was not implemented */
|
||||
if (!src->methods & GST_RTSP_DESCRIBE)
|
||||
if (!(src->methods & GST_RTSP_DESCRIBE))
|
||||
goto no_describe;
|
||||
|
||||
/* check if reply is SDP */
|
||||
|
|
Loading…
Reference in a new issue