Browse Source

rtspdec: Consistently use rtsp_hd_out for writing

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n2.6
Martin Storsjö 11 years ago
parent
commit
9108967513
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/rtspdec.c

+ 1
- 1
libavformat/rtspdec.c View File

@@ -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;
}


Loading…
Cancel
Save