]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/vc1dec.c
timecode: fix typo
[ffmpeg] / libavcodec / vc1dec.c
index 1469d815ce26a6fbac27e13e4aa58c1bc64e652f..109c00933895927b10ac58778f8f37cd291ef542 100644 (file)
@@ -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;