1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

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
This commit is contained in:
Ronald S. Bultje 2010-01-21 20:01:11 +00:00
parent 7eaa646fd6
commit f8c087333d

View File

@ -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);