mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-23 14:36:24 +00:00
rtspsrc: handle data message when waiting for reply
When we are waiting for a server reply, handle data messages instead of ignoring them.
This commit is contained in:
parent
61219dc6ed
commit
f39ef2ab68
1 changed files with 2 additions and 1 deletions
|
@ -4787,7 +4787,8 @@ next:
|
||||||
break;
|
break;
|
||||||
case GST_RTSP_MESSAGE_DATA:
|
case GST_RTSP_MESSAGE_DATA:
|
||||||
/* get next response */
|
/* get next response */
|
||||||
GST_DEBUG_OBJECT (src, "ignoring data response message");
|
GST_DEBUG_OBJECT (src, "handle data response message");
|
||||||
|
gst_rtspsrc_handle_data (src, response);
|
||||||
goto next;
|
goto next;
|
||||||
default:
|
default:
|
||||||
GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
|
GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
|
||||||
|
|
Loading…
Reference in a new issue