mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
rtsp: go and stay in the loop function on PLAY
When we have a PLAY request, go into the LOOP function next. When we are looping, keep on looping until we are told otherwise. This fixed rtsp and TCP connections. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=680551
This commit is contained in:
parent
943b56ff8e
commit
ef38efc2d7
1 changed files with 4 additions and 1 deletions
|
@ -6452,7 +6452,10 @@ gst_rtspsrc_thread (GstRTSPSrc * src)
|
|||
|
||||
GST_OBJECT_LOCK (src);
|
||||
cmd = src->pending_cmd;
|
||||
src->pending_cmd = CMD_WAIT;
|
||||
if (cmd == CMD_PLAY || cmd == CMD_LOOP)
|
||||
src->pending_cmd = CMD_LOOP;
|
||||
else
|
||||
src->pending_cmd = CMD_WAIT;
|
||||
GST_DEBUG_OBJECT (src, "got command %d", cmd);
|
||||
|
||||
/* we got the message command, so ensure communication is possible again */
|
||||
|
|
Loading…
Reference in a new issue