diff eatqi.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/eatqi.c	Sun Apr 12 09:06:17 2009 +0000
+++ b/eatqi.c	Sun Apr 12 09:33:38 2009 +0000
@@ -128,7 +128,7 @@
 
     t->bitstream_buf = av_fast_realloc(t->bitstream_buf, &t->bitstream_buf_size, (buf_end-buf) + FF_INPUT_BUFFER_PADDING_SIZE);
     if (!t->bitstream_buf)
-        return -1;
+        return AVERROR(ENOMEM);
     s->dsp.bswap_buf((uint32_t*)t->bitstream_buf, (const uint32_t*)buf, (buf_end-buf)/4);
     init_get_bits(&s->gb, t->bitstream_buf, 8*(buf_end-buf));