mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-31 07:05:24 +08:00
Remove unnecessary parentheses from return calls.
Originally committed as revision 13069 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -152,7 +152,7 @@ static int loco_decode_plane(LOCOContext *l, uint8_t *data, int width, int heigh
|
||||
data += stride;
|
||||
}
|
||||
|
||||
return ((get_bits_count(&rc.gb) + 7) >> 3);
|
||||
return (get_bits_count(&rc.gb) + 7) >> 3;
|
||||
}
|
||||
|
||||
static int decode_frame(AVCodecContext *avctx,
|
||||
|
Reference in New Issue
Block a user