Commit ee0f53e9 authored by Clément Bœsch's avatar Clément Bœsch Committed by Justin Ruggles

alsdec: fix misplaced parentheses.

Signed-off-by: 's avatarJustin Ruggles <justin.ruggles@gmail.com>
parent ac3f5a68
......@@ -1453,7 +1453,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr,
ctx->cur_frame_length = sconf->frame_length;
// decode the frame data
if ((invalid_frame = read_frame_data(ctx, ra_frame) < 0))
if ((invalid_frame = read_frame_data(ctx, ra_frame)) < 0)
av_log(ctx->avctx, AV_LOG_WARNING,
"Reading frame data failed. Skipping RA unit.\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment