mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 20:51:13 +00:00
rtsp: start CSeq counting from 1 instead of 0
Start counting from 1 instead of 0 as this is what most other clients seem to do.
This commit is contained in:
parent
1081ae59eb
commit
0d3d3026d2
1 changed files with 1 additions and 0 deletions
|
@ -283,6 +283,7 @@ gst_rtsp_connection_create (const GstRTSPUrl * url, GstRTSPConnection ** conn)
|
|||
newconn->fd1.fd = -1;
|
||||
newconn->timer = g_timer_new ();
|
||||
newconn->timeout = 60;
|
||||
newconn->cseq = 1;
|
||||
|
||||
newconn->auth_method = GST_RTSP_AUTH_NONE;
|
||||
newconn->username = NULL;
|
||||
|
|
Loading…
Reference in a new issue