summaryrefslogtreecommitdiff
path: root/libavformat/rtspdec.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2015-01-21 14:23:50 +0100
committerMartin Storsjö <martin@martin.st>2015-01-23 10:33:00 +0200
commit9108967513fcaff3d55514a7bca4c9fbba128c71 (patch)
treeb0d21512ae01a67918ee3e3749eb2ffe21995b2e /libavformat/rtspdec.c
parent6341ab0ad3fde9583138e121f518e21cde15258e (diff)
rtspdec: Consistently use rtsp_hd_out for writing
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtspdec.c')
-rw-r--r--libavformat/rtspdec.c2
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;
}