1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

alsdec: Use AVERROR_INVALIDDATA in read_const_block_data

Reviewed-by: Thilo Borgmann <thilo.borgmann@googlemail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-12-13 03:03:56 +01:00
parent d7117138cf
commit 79bfba14b7

View File

@ -560,7 +560,7 @@ static int read_const_block_data(ALSDecContext *ctx, ALSBlockData *bd)
GetBitContext *gb = &ctx->gb; GetBitContext *gb = &ctx->gb;
if (bd->block_length <= 0) if (bd->block_length <= 0)
return -1; return AVERROR_INVALIDDATA;
*bd->raw_samples = 0; *bd->raw_samples = 0;
*bd->const_block = get_bits1(gb); // 1 = constant value, 0 = zero block (silence) *bd->const_block = get_bits1(gb); // 1 = constant value, 0 = zero block (silence)