summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorliushuyu <liushuyu011@gmail.com>2021-11-29 16:47:24 -0700
committerliushuyu <liushuyu011@gmail.com>2021-12-02 21:01:34 -0700
commit20a46790d7059c7fa8efeb1c95e62a57d97e42e3 (patch)
tree716206d9dd8c0fb61efad5de1ed295a0b8dd3dec /src
parentcd27f211c8ad67c73c831e57a4eb298f9693253f (diff)
video_core/codec: address comments
Diffstat (limited to 'src')
-rw-r--r--src/video_core/command_classes/codecs/codec.cpp20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/video_core/command_classes/codecs/codec.cpp b/src/video_core/command_classes/codecs/codec.cpp
index 1949a8cf3..2c0d8da64 100644
--- a/src/video_core/command_classes/codecs/codec.cpp
+++ b/src/video_core/command_classes/codecs/codec.cpp
@@ -23,14 +23,17 @@ namespace Tegra {
namespace {
constexpr AVPixelFormat PREFERRED_GPU_FMT = AV_PIX_FMT_NV12;
constexpr AVPixelFormat PREFERRED_CPU_FMT = AV_PIX_FMT_YUV420P;
-constexpr std::array PREFERRED_GPU_DECODERS = {AV_HWDEVICE_TYPE_CUDA,
+constexpr std::array PREFERRED_GPU_DECODERS = {
+ AV_HWDEVICE_TYPE_CUDA,
#ifdef _WIN32
- AV_HWDEVICE_TYPE_D3D11VA, AV_HWDEVICE_TYPE_DXVA2,
-#elif linux
- AV_HWDEVICE_TYPE_VDPAU,
+ AV_HWDEVICE_TYPE_D3D11VA,
+ AV_HWDEVICE_TYPE_DXVA2,
+#elif defined(__linux__)
+ AV_HWDEVICE_TYPE_VDPAU,
#endif
- // last resort for Linux Flatpak (w/ NVIDIA)
- AV_HWDEVICE_TYPE_VULKAN};
+ // last resort for Linux Flatpak (w/ NVIDIA)
+ AV_HWDEVICE_TYPE_VULKAN,
+};
void AVPacketDeleter(AVPacket* ptr) {
av_packet_free(&ptr);
@@ -72,12 +75,13 @@ Codec::~Codec() {
// List all the currently available hwcontext in ffmpeg
static std::vector<AVHWDeviceType> ListSupportedContexts() {
std::vector<AVHWDeviceType> contexts{};
- enum AVHWDeviceType current_device_type = AV_HWDEVICE_TYPE_NONE;
+ AVHWDeviceType current_device_type = AV_HWDEVICE_TYPE_NONE;
do {
current_device_type = av_hwdevice_iterate_types(current_device_type);
// filter out VA-API since we will try that first if supported
- if (current_device_type != AV_HWDEVICE_TYPE_VAAPI)
+ if (current_device_type != AV_HWDEVICE_TYPE_VAAPI) {
contexts.push_back(current_device_type);
+ }
} while (current_device_type != AV_HWDEVICE_TYPE_NONE);
return contexts;
}