summaryrefslogtreecommitdiff
path: root/libavformat/rtspdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-01-23 12:26:23 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-01-23 12:26:47 +0100
commit0982077be563cb9ea1f905b1182b6f0d1783ae12 (patch)
treeb26f02279ea86da98e658ad566643c4f34e38ab6 /libavformat/rtspdec.c
parentb4f5da26517c101caa3a200c1cdf6553c3641f5f (diff)
parent9108967513fcaff3d55514a7bca4c9fbba128c71 (diff)
Merge commit '9108967513fcaff3d55514a7bca4c9fbba128c71'
* commit '9108967513fcaff3d55514a7bca4c9fbba128c71': rtspdec: Consistently use rtsp_hd_out for writing Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 fa7383c734..c8994988d5 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;
}