summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2023-08-23 22:06:00 +0200
committerLynne <dev@lynne.ee>2023-08-24 22:51:36 +0200
commit9f66286f0bdd42fe388a7366909c11954fd330a6 (patch)
treeda3ac52ab569f4b1fdbe7e79648d3cb70313a848 /libavcodec
parent9d0da996f065cc833517eb41ee031545c276520a (diff)
avcodec/vulkan_decode: print also codec header name
Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/vulkan_decode.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vulkan_decode.c b/libavcodec/vulkan_decode.c
index 04350578f9..1b2ff0045d 100644
--- a/libavcodec/vulkan_decode.c
+++ b/libavcodec/vulkan_decode.c
@@ -863,6 +863,9 @@ static int vulkan_decode_get_profile(AVCodecContext *avctx, AVBufferRef *frames_
caps->maxDpbSlots);
av_log(avctx, AV_LOG_VERBOSE, " Maximum active references: %u\n",
caps->maxActiveReferencePictures);
+ av_log(avctx, AV_LOG_VERBOSE, " Codec header name: '%s' (driver), '%s' (compiled)\n",
+ caps->stdHeaderVersion.extensionName,
+ dec_ext[avctx->codec_id]->extensionName);
av_log(avctx, AV_LOG_VERBOSE, " Codec header version: %i.%i.%i (driver), %i.%i.%i (compiled)\n",
CODEC_VER(caps->stdHeaderVersion.specVersion),
CODEC_VER(dec_ext[avctx->codec_id]->specVersion));