diff options
author | Mark Thompson <sw@jkqxz.net> | 2016-08-06 21:35:13 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2017-01-17 23:06:45 +0000 |
commit | d07d01bcce4dd145d04bd936b5d2d268ed688e3f (patch) | |
tree | e99ba67bc791ef982dcaf9172320211797b1ea73 | |
parent | 845c2c140b5ec9774dba5d92459b581eba79a788 (diff) | |
download | ffmpeg-d07d01bcce4dd145d04bd936b5d2d268ed688e3f.tar.gz |
vaapi_vc1: Remove redundant version check
The lowest supported VAAPI version is 0.34 (checked at configure
time), so this test is no longer needed.
(cherry picked from commit 5a667322f5cb0e77c15891fc06725c19d8f3314f)
-rw-r--r-- | libavcodec/vaapi_vc1.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/vaapi_vc1.c b/libavcodec/vaapi_vc1.c index 7a9b8d3920..17e35e6a3e 100644 --- a/libavcodec/vaapi_vc1.c +++ b/libavcodec/vaapi_vc1.c @@ -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 */ |