diff mimic.c @ 9413:1eafaea58613 libavcodec

Use AVERROR(ENOMEM) instead of AVERROR_NOMEM / -1 in eatqi and mimic decoders
author reimar
date Sun, 12 Apr 2009 09:33:38 +0000
parents 54bc8a2727b0
children 5a738e8f9524
line wrap: on
line diff
--- a/mimic.c	Sun Apr 12 09:06:17 2009 +0000
+++ b/mimic.c	Sun Apr 12 09:33:38 2009 +0000
@@ -337,7 +337,7 @@
     ctx->swap_buf = av_fast_realloc(ctx->swap_buf, &ctx->swap_buf_size,
                                  swap_buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
     if(!ctx->swap_buf)
-        return AVERROR_NOMEM;
+        return AVERROR(ENOMEM);
 
     ctx->dsp.bswap_buf((uint32_t*)ctx->swap_buf,
                         (const uint32_t*) buf,