alsdec: fix misplaced parentheses.

Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
This commit is contained in:
Clément Bœsch 2012-09-04 14:30:14 -04:00 committed by Justin Ruggles
parent ac3f5a6879
commit ee0f53e966
1 changed files with 1 additions and 1 deletions

View File

@ -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");