You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
alsdec: minor simplification in read_block()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -983,8 +983,7 @@ static int read_block(ALSDecContext *ctx, ALSBlockData *bd)
|
||||
if (get_bits1(gb)) {
|
||||
ret = read_var_block_data(ctx, bd);
|
||||
} else {
|
||||
if ((ret = read_const_block_data(ctx, bd)) < 0)
|
||||
return ret;
|
||||
ret = read_const_block_data(ctx, bd);
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
Reference in New Issue
Block a user