summaryrefslogtreecommitdiff
path: root/libavcodec/vaapi_vc1.c
diff options
context:
space:
mode:
authorGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2011-03-30 09:29:34 +0200
committerGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2011-03-30 16:15:29 +0200
commitda3716021b707d284454bd294ad9254188dd7caa (patch)
tree84801339b6f0668d673c4c07f14d13331677794c /libavcodec/vaapi_vc1.c
parentdd950e2ebb08cadf8f5a5c42d6506a89abc06996 (diff)
vaapi: allow build against older VA-API 0.31.
Diffstat (limited to 'libavcodec/vaapi_vc1.c')
-rw-r--r--libavcodec/vaapi_vc1.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vaapi_vc1.c b/libavcodec/vaapi_vc1.c
index 02186c3844..b1dfde86dd 100644
--- a/libavcodec/vaapi_vc1.c
+++ b/libavcodec/vaapi_vc1.c
@@ -160,7 +160,9 @@ static int vaapi_vc1_start_frame(AVCodecContext *avctx, av_unused const uint8_t
pic_param->sequence_fields.bits.syncmarker = s->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 */