diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2015-11-24 01:13:00 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-11-25 09:01:25 +0100 |
commit | 2c17fb61ced2059034856a6c6cd303014aed01fe (patch) | |
tree | b02cabcb77e43421867dca95451d62e598339b9c /libavformat/rtspdec.c | |
parent | 12b14382861fbf19378afcddaa19cd9a949a86a3 (diff) | |
download | ffmpeg-2c17fb61ced2059034856a6c6cd303014aed01fe.tar.gz |
rtsp: Log getaddrinfo failures
And forward the logging contexts when needed.
Diffstat (limited to 'libavformat/rtspdec.c')
-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 6c92c6946e..8ccf147699 100644 --- a/libavformat/rtspdec.c +++ b/libavformat/rtspdec.c @@ -151,7 +151,7 @@ static inline int rtsp_read_request(AVFormatContext *s, return ret; if (rbuflen > 1) { av_log(s, AV_LOG_TRACE, "Parsing[%d]: %s\n", rbuflen, rbuf); - ff_rtsp_parse_line(request, rbuf, rt, method); + ff_rtsp_parse_line(s, request, rbuf, rt, method); } } while (rbuflen > 0); if (request->seq != rt->seq + 1) { |