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
@ -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…
x
Reference in New Issue
Block a user