aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/codec_query/nvenc.h (renamed from include/codec_query/cuda.h)6
-rw-r--r--meson.build2
-rw-r--r--src/codec_query/nvenc.c (renamed from src/codec_query/cuda.c)2
-rw-r--r--src/main.cpp2
4 files changed, 6 insertions, 6 deletions
diff --git a/include/codec_query/cuda.h b/include/codec_query/nvenc.h
index b57c4ee..c01acf6 100644
--- a/include/codec_query/cuda.h
+++ b/include/codec_query/nvenc.h
@@ -1,8 +1,8 @@
-#ifndef GSR_CODEC_QUERY_CUDA_H
-#define GSR_CODEC_QUERY_CUDA_H
+#ifndef GSR_CODEC_QUERY_NVENC_H
+#define GSR_CODEC_QUERY_NVENC_H
#include "codec_query.h"
bool gsr_get_supported_video_codecs_nvenc(gsr_supported_video_codecs *video_codecs, bool cleanup);
-#endif /* GSR_CODEC_QUERY_CUDA_H */
+#endif /* GSR_CODEC_QUERY_NVENC_H */
diff --git a/meson.build b/meson.build
index 33eaec8..74ac845 100644
--- a/meson.build
+++ b/meson.build
@@ -18,7 +18,7 @@ src = [
'src/encoder/video/vaapi.c',
'src/encoder/video/vulkan.c',
'src/encoder/video/software.c',
- 'src/codec_query/cuda.c',
+ 'src/codec_query/nvenc.c',
'src/codec_query/vaapi.c',
'src/codec_query/vulkan.c',
'src/egl.c',
diff --git a/src/codec_query/cuda.c b/src/codec_query/nvenc.c
index 4692b1d..0501851 100644
--- a/src/codec_query/cuda.c
+++ b/src/codec_query/nvenc.c
@@ -1,4 +1,4 @@
-#include "../../include/codec_query/cuda.h"
+#include "../../include/codec_query/nvenc.h"
#include "../../include/cuda.h"
#include "../../external/nvEncodeAPI.h"
diff --git a/src/main.cpp b/src/main.cpp
index 3751fbb..ff44763 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -10,7 +10,7 @@ extern "C" {
#include "../include/encoder/video/vaapi.h"
#include "../include/encoder/video/vulkan.h"
#include "../include/encoder/video/software.h"
-#include "../include/codec_query/cuda.h"
+#include "../include/codec_query/nvenc.h"
#include "../include/codec_query/vaapi.h"
#include "../include/codec_query/vulkan.h"
#include "../include/egl.h"