]> git.sesse.net Git - ffmpeg/commitdiff
vaapi_vc1: Remove redundant version check
authorMark Thompson <sw@jkqxz.net>
Sat, 6 Aug 2016 20:35:13 +0000 (21:35 +0100)
committerMark Thompson <sw@jkqxz.net>
Sat, 13 Aug 2016 08:46:48 +0000 (09:46 +0100)
The lowest supported VAAPI version is 0.34 (checked at configure
time), so this test is no longer needed.

libavcodec/vaapi_vc1.c

index efe950a56a42d6b23c56a484d800b7eda4928d2a..2fc03e68ee66a0e2fd18102131241c36c771b0fb 100644 (file)
@@ -171,9 +171,7 @@ static int vaapi_vc1_start_frame(AVCodecContext *avctx, av_unused const uint8_t
     pic_param->sequence_fields.bits.syncmarker                      = v->resync_marker;
     pic_param->sequence_fields.bits.rangered                        = v->rangered;
     pic_param->sequence_fields.bits.max_b_frames                    = s->avctx->max_b_frames;
-#if VA_CHECK_VERSION(0,32,0)
     pic_param->sequence_fields.bits.profile                         = v->profile;
-#endif
     pic_param->coded_width                                          = s->avctx->coded_width;
     pic_param->coded_height                                         = s->avctx->coded_height;
     pic_param->entrypoint_fields.value                              = 0; /* reset all bits */