OSDN Git Service

ENOMEM is better, yes ...
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 29 May 2008 15:40:16 +0000 (15:40 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 29 May 2008 15:40:16 +0000 (15:40 +0000)
Originally committed as revision 13535 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/yuv4mpeg.c

index d05d8f6..3ba582e 100644 (file)
@@ -323,7 +323,7 @@ static int yuv4_read_header(AVFormatContext *s, AVFormatParameters *ap)
 
     st = av_new_stream(s, 0);
     if(!st)
-        return -1;
+        return AVERROR(ENOMEM);
     st->codec->width = width;
     st->codec->height = height;
     av_reduce(&raten, &rated, raten, rated, (1UL<<31)-1);