diff options
author | Martin Storsjö <martin@martin.st> | 2015-01-21 14:23:50 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-01-23 10:33:00 +0200 |
commit | 9108967513fcaff3d55514a7bca4c9fbba128c71 (patch) | |
tree | b0d21512ae01a67918ee3e3749eb2ffe21995b2e /libavformat | |
parent | 6341ab0ad3fde9583138e121f518e21cde15258e (diff) | |
download | ffmpeg-9108967513fcaff3d55514a7bca4c9fbba128c71.tar.gz |
rtspdec: Consistently use rtsp_hd_out for writing
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtspdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c index 1f90590c89..418f3837b8 100644 --- a/libavformat/rtspdec.c +++ b/libavformat/rtspdec.c @@ -114,7 +114,7 @@ static int rtsp_send_reply(AVFormatContext *s, enum RTSPStatusCode code, av_strlcat(message, extracontent, sizeof(message)); av_strlcat(message, "\r\n", sizeof(message)); av_dlog(s, "Sending response:\n%s", message); - ffurl_write(rt->rtsp_hd, message, strlen(message)); + ffurl_write(rt->rtsp_hd_out, message, strlen(message)); return 0; } |