summaryrefslogtreecommitdiff
path: root/libavcodec/vdpau_vp9.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/vdpau_vp9.c')
-rw-r--r--libavcodec/vdpau_vp9.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/vdpau_vp9.c b/libavcodec/vdpau_vp9.c
index fa55101536..424e2e60fb 100644
--- a/libavcodec/vdpau_vp9.c
+++ b/libavcodec/vdpau_vp9.c
@@ -203,16 +203,16 @@ static int vdpau_vp9_init(AVCodecContext *avctx)
uint32_t level = avctx->level;
switch (avctx->profile) {
- case FF_PROFILE_VP9_0:
+ case AV_PROFILE_VP9_0:
profile = VDP_DECODER_PROFILE_VP9_PROFILE_0;
break;
- case FF_PROFILE_VP9_1:
+ case AV_PROFILE_VP9_1:
profile = VDP_DECODER_PROFILE_VP9_PROFILE_1;
break;
- case FF_PROFILE_VP9_2:
+ case AV_PROFILE_VP9_2:
profile = VDP_DECODER_PROFILE_VP9_PROFILE_2;
break;
- case FF_PROFILE_VP9_3:
+ case AV_PROFILE_VP9_3:
profile = VDP_DECODER_PROFILE_VP9_PROFILE_3;
break;
default: