diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-01-07 19:07:42 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-07 22:13:07 +0100 |
commit | 3dc99a18d4ae2b9bcc96e00b7f589128717aec64 (patch) | |
tree | 895f83e64aae6cdea16c72998257634424866042 /libavcodec/vc1dec.c | |
parent | 079688b6cbd2944ab84d3539efcde161aa090fac (diff) | |
download | ffmpeg-3dc99a18d4ae2b9bcc96e00b7f589128717aec64.tar.gz |
cosmetics: drop some pointless parentheses
Diffstat (limited to 'libavcodec/vc1dec.c')
-rw-r--r-- | libavcodec/vc1dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index bc8daed7af..fa952739bb 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -5342,7 +5342,7 @@ static av_cold int vc1_decode_init(AVCodecContext *avctx) if (v->profile == PROFILE_ADVANCED) avctx->level = v->level; - avctx->has_b_frames = !!(avctx->max_b_frames); + avctx->has_b_frames = !!avctx->max_b_frames; s->mb_width = (avctx->coded_width + 15) >> 4; s->mb_height = (avctx->coded_height + 15) >> 4; |