Skip to content
Snippets Groups Projects
Commit 7ed8211b authored by Luca Barbato's avatar Luca Barbato
Browse files

Issue a warning if the received CSeq isn't the expected one

Originally committed as revision 22661 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9405f733
No related branches found
No related tags found
No related merge requests found
...@@ -974,6 +974,11 @@ int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply, ...@@ -974,6 +974,11 @@ int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply,
else else
av_free(content); av_free(content);
if (rt->seq != reply->seq) {
av_log(s, AV_LOG_WARNING, "CSeq %d expected, %d received.\n",
rt->seq, reply->seq);
}
/* EOS */ /* EOS */
if (reply->notice == 2101 /* End-of-Stream Reached */ || if (reply->notice == 2101 /* End-of-Stream Reached */ ||
reply->notice == 2104 /* Start-of-Stream Reached */ || reply->notice == 2104 /* Start-of-Stream Reached */ ||
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment