summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r--libavformat/rtsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 0e91e92eb7..417c6be9be 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -1044,7 +1044,7 @@ static int rtsp_read_header(AVFormatContext *s,
rtsp_st->rtp_ctx = rtp_parse_open(s, st, rtsp_st->rtp_handle, rtsp_st->sdp_payload_type, &rtsp_st->rtp_payload_data);
if (!rtsp_st->rtp_ctx) {
- err = AVERROR_NOMEM;
+ err = AVERROR(ENOMEM);
goto fail;
} else {
if(rtsp_st->dynamic_handler) {
@@ -1384,7 +1384,7 @@ static int sdp_read_header(AVFormatContext *s,
s->ctx_flags |= AVFMTCTX_NOHEADER;
rtsp_st->rtp_ctx = rtp_parse_open(s, st, rtsp_st->rtp_handle, rtsp_st->sdp_payload_type, &rtsp_st->rtp_payload_data);
if (!rtsp_st->rtp_ctx) {
- err = AVERROR_NOMEM;
+ err = AVERROR(ENOMEM);
goto fail;
} else {
if(rtsp_st->dynamic_handler) {