rtspdec: Consistently use rtsp_hd_out for writing

Signed-off-by: Martin Storsjö <martin@martin.st>
pull/105/head
Martin Storsjö 10 years ago
parent 6341ab0ad3
commit 9108967513
  1. 2
      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, extracontent, sizeof(message));
av_strlcat(message, "\r\n", sizeof(message)); av_strlcat(message, "\r\n", sizeof(message));
av_dlog(s, "Sending response:\n%s", 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; return 0;
} }

Loading…
Cancel
Save