Commit f8c08733 authored by Ronald S. Bultje's avatar Ronald S. Bultje

Change on rtsp_send_cmd() to the _async() version since we don't use the

response anyway.

Originally committed as revision 21370 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7eaa646f
......@@ -1726,7 +1726,7 @@ static int rtsp_read_close(AVFormatContext *s)
snprintf(cmd, sizeof(cmd),
"TEARDOWN %s RTSP/1.0\r\n",
s->filename);
rtsp_send_cmd(s, cmd, reply, NULL);
rtsp_send_cmd_async(s, cmd, reply, NULL);
rtsp_close_streams(rt);
url_close(rt->rtsp_hd);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment