diff flvdec.c @ 2273:7eb456c4ed8a libavformat

Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
author takis
date Thu, 19 Jul 2007 15:21:30 +0000
parents 1c30ea3c0fcf
children b21c2af60bc9
line wrap: on
line diff
--- a/flvdec.c	Thu Jul 19 14:48:13 2007 +0000
+++ b/flvdec.c	Thu Jul 19 15:21:30 2007 +0000
@@ -237,14 +237,14 @@
     if(flags & FLV_HEADER_FLAG_HASVIDEO){
         st = av_new_stream(s, 0);
         if (!st)
-            return AVERROR_NOMEM;
+            return AVERROR(ENOMEM);
         st->codec->codec_type = CODEC_TYPE_VIDEO;
         av_set_pts_info(st, 24, 1, 1000); /* 24 bit pts in ms */
     }
     if(flags & FLV_HEADER_FLAG_HASAUDIO){
         st = av_new_stream(s, 1);
         if (!st)
-            return AVERROR_NOMEM;
+            return AVERROR(ENOMEM);
         st->codec->codec_type = CODEC_TYPE_AUDIO;
         av_set_pts_info(st, 24, 1, 1000); /* 24 bit pts in ms */
     }