summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-04-12 09:33:38 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-04-12 09:33:38 +0000
commit55775b099d91d41741ff169faa31ac671d08eb6a (patch)
tree28b7954bd20f5691686f869853b320cc6e4f61aa
parent53bd67ec89352692f0e0b886bac03c94768701ce (diff)
Use AVERROR(ENOMEM) instead of AVERROR_NOMEM / -1 in eatqi and mimic decoders
Originally committed as revision 18467 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/eatqi.c2
-rw-r--r--libavcodec/mimic.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/eatqi.c b/libavcodec/eatqi.c
index 3b6b8ebf9d..acddec0f9a 100644
--- a/libavcodec/eatqi.c
+++ b/libavcodec/eatqi.c
@@ -128,7 +128,7 @@ static int tqi_decode_frame(AVCodecContext *avctx,
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));
diff --git a/libavcodec/mimic.c b/libavcodec/mimic.c
index da5bba3c2e..3b40fdf759 100644
--- a/libavcodec/mimic.c
+++ b/libavcodec/mimic.c
@@ -337,7 +337,7 @@ static int mimic_decode_frame(AVCodecContext *avctx, void *data,
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,