diff options
author | Valeri <v19930312@gmail.com> | 2023-10-14 16:35:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-14 16:35:45 +0200 |
commit | 762ac5aa9f4797b66653ab1e8093f1f224ccadd2 (patch) | |
tree | 74e58232ee406e369a888f677bdf3c6259ebaac3 /src/video_core/host1x | |
parent | Merge pull request #11780 from Darkness4/master (diff) | |
download | yuzu-762ac5aa9f4797b66653ab1e8093f1f224ccadd2.tar yuzu-762ac5aa9f4797b66653ab1e8093f1f224ccadd2.tar.gz yuzu-762ac5aa9f4797b66653ab1e8093f1f224ccadd2.tar.bz2 yuzu-762ac5aa9f4797b66653ab1e8093f1f224ccadd2.tar.lz yuzu-762ac5aa9f4797b66653ab1e8093f1f224ccadd2.tar.xz yuzu-762ac5aa9f4797b66653ab1e8093f1f224ccadd2.tar.zst yuzu-762ac5aa9f4797b66653ab1e8093f1f224ccadd2.zip |
Diffstat (limited to 'src/video_core/host1x')
-rw-r--r-- | src/video_core/host1x/codecs/codec.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/video_core/host1x/codecs/codec.cpp b/src/video_core/host1x/codecs/codec.cpp index 8d7da50fc..dbcf508e5 100644 --- a/src/video_core/host1x/codecs/codec.cpp +++ b/src/video_core/host1x/codecs/codec.cpp @@ -137,16 +137,6 @@ bool Codec::CreateGpuAvDevice() { break; } if ((config->methods & HW_CONFIG_METHOD) != 0 && config->device_type == type) { -#if defined(__unix__) - // Some linux decoding backends are reported to crash with this config method - // TODO(ameerj): Properly support this method - if ((config->methods & AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX) != 0) { - // 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; - } -#endif LOG_INFO(Service_NVDRV, "Using {} GPU decoder", av_hwdevice_get_type_name(type)); av_codec_ctx->pix_fmt = config->pix_fmt; return true; |