Commit 91089675 authored by Martin Storsjö's avatar Martin Storsjö

rtspdec: Consistently use rtsp_hd_out for writing

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 6341ab0a
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment