diff options
author | Andrey Utkin | 2014-10-18 00:24:03 +0400 |
---|---|---|
committer | Michael Niedermayer | 2014-10-21 03:52:27 +0200 |
commit | 282c9354f13553399f83c026ec036321703578eb (patch) | |
tree | 7f759bd865e921ac7e19f019413a5467a1c8d02a /libavformat/rtsp.c | |
parent | 24dfd6e79b4116dcb0e0acb0f6ebeb8f0fe3b263 (diff) |
avformat/rtsp: Use ff_rtsp_averror()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 77f03bac30..1682db8877 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1478,7 +1478,7 @@ int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port, goto fail; } else if (reply->status_code != RTSP_STATUS_OK || reply->nb_transports != 1) { - err = AVERROR_INVALIDDATA; + err = ff_rtsp_averror(reply->status_code, AVERROR_INVALIDDATA); goto fail; } @@ -1778,7 +1778,7 @@ redirect: sizeof(cmd)); ff_rtsp_send_cmd(s, "OPTIONS", rt->control_uri, cmd, reply, NULL); if (reply->status_code != RTSP_STATUS_OK) { - err = AVERROR_INVALIDDATA; + err = ff_rtsp_averror(reply->status_code, AVERROR_INVALIDDATA); goto fail; } |