From 2874c81cc80b7f1005073748e8f1877055bf97a7 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 3 Apr 2010 14:15:00 +0000 Subject: Replace all remaining occurrences of AVERROR_NOMEM with AVERROR(ENOMEM). AVERROR_NOMEM is deprecated and will be dropped at the next libavutil major bump. Originally committed as revision 22791 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtpdec_h263.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/rtpdec_h263.c') diff --git a/libavformat/rtpdec_h263.c b/libavformat/rtpdec_h263.c index 3d5925e9a4..19de6eca26 100644 --- a/libavformat/rtpdec_h263.c +++ b/libavformat/rtpdec_h263.c @@ -78,7 +78,7 @@ static int h263_handle_packet(AVFormatContext *ctx, if (av_new_packet(pkt, len + startcode)) { av_log(ctx, AV_LOG_ERROR, "Out of memory\n"); - return AVERROR_NOMEM; + return AVERROR(ENOMEM); } pkt->stream_index = st->index; ptr = pkt->data; -- cgit v1.2.3