diff ogg.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 da41753f1220
children b21c2af60bc9
line wrap: on
line diff
--- a/ogg.c	Thu Jul 19 14:48:13 2007 +0000
+++ b/ogg.c	Thu Jul 19 15:21:30 2007 +0000
@@ -216,7 +216,7 @@
 
     ast = av_new_stream(avfcontext, 0) ;
     if(!ast)
-        return AVERROR_NOMEM ;
+        return AVERROR(ENOMEM) ;
     av_set_pts_info(ast, 60, 1, AV_TIME_BASE);
 
     codec= &ast->codec;