summaryrefslogtreecommitdiffstats
path: root/video/decode/vd_lavc.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-01-08 17:19:04 +0100
committerwm4 <wm4@nowhere>2016-01-08 17:19:04 +0100
commit2a80680d95fd86242579ad4dcaa752f481945b4e (patch)
tree7b8890db06cc061368a597a459965ac25805a20d /video/decode/vd_lavc.c
parent8e87ddd7fe21bf15fbc9db1493edf296f0e30b61 (diff)
downloadmpv-2a80680d95fd86242579ad4dcaa752f481945b4e.tar.bz2
mpv-2a80680d95fd86242579ad4dcaa752f481945b4e.tar.xz
Fix build on older libavcodec versions
avcodec_profile_name() was added only a week ago or so.
Diffstat (limited to 'video/decode/vd_lavc.c')
-rw-r--r--video/decode/vd_lavc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/video/decode/vd_lavc.c b/video/decode/vd_lavc.c
index f16136b75a..d3c0de2c76 100644
--- a/video/decode/vd_lavc.c
+++ b/video/decode/vd_lavc.c
@@ -529,9 +529,11 @@ static enum AVPixelFormat get_format_hwdec(struct AVCodecContext *avctx,
MP_VERBOSE(vd, " %s", av_get_pix_fmt_name(fmt[i]));
MP_VERBOSE(vd, "\n");
+#if HAVE_AVCODEC_PROFILE_NAME
const char *profile = avcodec_profile_name(avctx->codec_id, avctx->profile);
MP_VERBOSE(vd, "Codec profile: %s (0x%x)\n", profile ? profile : "unknown",
avctx->profile);
+#endif
assert(ctx->hwdec);