From 12b4f177ec3093588e96482608189b1c73b95d52 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 8 Jan 2016 09:13:56 +0100 Subject: vd_lavc: log codec profile when attempting hardware decoding Should be useful. --- video/decode/vd_lavc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/video/decode/vd_lavc.c b/video/decode/vd_lavc.c index 89fa21c4e1..f16136b75a 100644 --- a/video/decode/vd_lavc.c +++ b/video/decode/vd_lavc.c @@ -529,6 +529,10 @@ static enum AVPixelFormat get_format_hwdec(struct AVCodecContext *avctx, MP_VERBOSE(vd, " %s", av_get_pix_fmt_name(fmt[i])); MP_VERBOSE(vd, "\n"); + 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); + assert(ctx->hwdec); ctx->hwdec_request_reinit |= ctx->hwdec_failed; -- cgit v1.2.3