From 79bfba14b78f126aa75a6d15cb6a5ce3c428eaf1 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 13 Dec 2012 03:03:56 +0100 Subject: [PATCH] alsdec: Use AVERROR_INVALIDDATA in read_const_block_data Reviewed-by: Thilo Borgmann Signed-off-by: Michael Niedermayer --- libavcodec/alsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index 1465129f8c..73c6660a55 100644 --- a/libavcodec/alsdec.c +++ b/libavcodec/alsdec.c @@ -560,7 +560,7 @@ static int read_const_block_data(ALSDecContext *ctx, ALSBlockData *bd) GetBitContext *gb = &ctx->gb; if (bd->block_length <= 0) - return -1; + return AVERROR_INVALIDDATA; *bd->raw_samples = 0; *bd->const_block = get_bits1(gb); // 1 = constant value, 0 = zero block (silence)