mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 09:07:13 +09:00
Rename video encoder cuda to video encoder nvenc
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
#ifndef GSR_ENCODER_VIDEO_CUDA_H
|
||||
#define GSR_ENCODER_VIDEO_CUDA_H
|
||||
|
||||
#include "video.h"
|
||||
|
||||
typedef struct gsr_egl gsr_egl;
|
||||
|
||||
typedef struct {
|
||||
gsr_egl *egl;
|
||||
bool overclock;
|
||||
gsr_color_depth color_depth;
|
||||
} gsr_video_encoder_cuda_params;
|
||||
|
||||
gsr_video_encoder* gsr_video_encoder_cuda_create(const gsr_video_encoder_cuda_params *params);
|
||||
|
||||
#endif /* GSR_ENCODER_VIDEO_CUDA_H */
|
||||
16
include/encoder/video/nvenc.h
Normal file
16
include/encoder/video/nvenc.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef GSR_ENCODER_VIDEO_NVENC_H
|
||||
#define GSR_ENCODER_VIDEO_NVENC_H
|
||||
|
||||
#include "video.h"
|
||||
|
||||
typedef struct gsr_egl gsr_egl;
|
||||
|
||||
typedef struct {
|
||||
gsr_egl *egl;
|
||||
bool overclock;
|
||||
gsr_color_depth color_depth;
|
||||
} gsr_video_encoder_nvenc_params;
|
||||
|
||||
gsr_video_encoder* gsr_video_encoder_nvenc_create(const gsr_video_encoder_nvenc_params *params);
|
||||
|
||||
#endif /* GSR_ENCODER_VIDEO_NVENC_H */
|
||||
Reference in New Issue
Block a user