From 19bf3a72ff3fd36fbd2443f27e453d6e82b4dd2f Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 4 May 2017 01:00:35 +0200 Subject: vd_lavc: fix build with FFmpeg 3.2 Sigh... The functionality is not actually needed for vdpau, but if the vdpau hwaccel is present, the FFmpeg version is new enough that it includes the field. --- video/decode/vd_lavc.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'video/decode') diff --git a/video/decode/vd_lavc.c b/video/decode/vd_lavc.c index d067b15401..d15f01768b 100644 --- a/video/decode/vd_lavc.c +++ b/video/decode/vd_lavc.c @@ -591,8 +591,13 @@ static void init_avctx(struct dec_video *vd, const char *decoder, ctx->hwdec_dev = hwdec_create_dev(vd, ctx->hwdec, false); if (!ctx->hwdec_dev) goto error; - if (!ctx->hwdec->set_hwframes) + if (!ctx->hwdec->set_hwframes) { +#if HAVE_VDPAU_HWACCEL avctx->hw_device_ctx = av_buffer_ref(ctx->hwdec_dev->av_device_ref); +#else + goto error; +#endif + } } ctx->max_delay_queue = ctx->hwdec->delay_queue; ctx->hw_probing = true; -- cgit v1.2.3