diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-01-23 12:26:23 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-23 12:26:47 +0100 |
commit | 0982077be563cb9ea1f905b1182b6f0d1783ae12 (patch) | |
tree | b26f02279ea86da98e658ad566643c4f34e38ab6 | |
parent | b4f5da26517c101caa3a200c1cdf6553c3641f5f (diff) | |
parent | 9108967513fcaff3d55514a7bca4c9fbba128c71 (diff) | |
download | ffmpeg-0982077be563cb9ea1f905b1182b6f0d1783ae12.tar.gz |
Merge commit '9108967513fcaff3d55514a7bca4c9fbba128c71'
* commit '9108967513fcaff3d55514a7bca4c9fbba128c71':
rtspdec: Consistently use rtsp_hd_out for writing
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-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 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; } |