mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-07 12:21:17 +00:00
rtspsrc: also go into the loop function after connect
When we have opened the stream, go into the loop function so that we can receive messages from the server.
This commit is contained in:
parent
40c0586c17
commit
8c5ce0dbdc
1 changed files with 1 additions and 1 deletions
|
@ -6971,7 +6971,7 @@ gst_rtspsrc_thread (GstRTSPSrc * src)
|
|||
GST_OBJECT_LOCK (src);
|
||||
cmd = src->pending_cmd;
|
||||
if (cmd == CMD_RECONNECT || cmd == CMD_PLAY || cmd == CMD_PAUSE
|
||||
|| cmd == CMD_LOOP)
|
||||
|| cmd == CMD_LOOP || cmd == CMD_OPEN)
|
||||
src->pending_cmd = CMD_LOOP;
|
||||
else
|
||||
src->pending_cmd = CMD_WAIT;
|
||||
|
|
Loading…
Reference in a new issue