diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-15 07:27:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-15 07:27:13 +0100 |
commit | 156215d1faf8a74379e54409304e90384b59c8af (patch) | |
tree | 931cbdba012d5d0ddfd825ed0eb318f398ac1e69 /src | |
parent | Merge pull request #7558 from Morph1984/unused-cpu-family-model (diff) | |
parent | CI: fix CI on Linux (diff) | |
download | yuzu-156215d1faf8a74379e54409304e90384b59c8af.tar yuzu-156215d1faf8a74379e54409304e90384b59c8af.tar.gz yuzu-156215d1faf8a74379e54409304e90384b59c8af.tar.bz2 yuzu-156215d1faf8a74379e54409304e90384b59c8af.tar.lz yuzu-156215d1faf8a74379e54409304e90384b59c8af.tar.xz yuzu-156215d1faf8a74379e54409304e90384b59c8af.tar.zst yuzu-156215d1faf8a74379e54409304e90384b59c8af.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/command_classes/codecs/codec.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/command_classes/codecs/codec.cpp b/src/video_core/command_classes/codecs/codec.cpp index 2a532b883..868b82f9b 100644 --- a/src/video_core/command_classes/codecs/codec.cpp +++ b/src/video_core/command_classes/codecs/codec.cpp @@ -130,6 +130,12 @@ bool Codec::CreateGpuAvDevice() { } if (config->methods & HW_CONFIG_METHOD && config->device_type == type) { av_codec_ctx->pix_fmt = config->pix_fmt; + if (config->methods & AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX) { + // skip zero-copy decoders, we don't currently support them + LOG_DEBUG(Service_NVDRV, "Skipping decoder {} with unsupported capability {}.", + av_hwdevice_get_type_name(type), config->methods); + continue; + } LOG_INFO(Service_NVDRV, "Using {} GPU decoder", av_hwdevice_get_type_name(type)); return true; } |