mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 09:07:13 +09:00
16 lines
380 B
C
16 lines
380 B
C
#ifndef GSR_ENCODER_VIDEO_SOFTWARE_H
|
|
#define GSR_ENCODER_VIDEO_SOFTWARE_H
|
|
|
|
#include "video.h"
|
|
|
|
typedef struct gsr_egl gsr_egl;
|
|
|
|
typedef struct {
|
|
gsr_egl *egl;
|
|
gsr_color_depth color_depth;
|
|
} gsr_video_encoder_software_params;
|
|
|
|
gsr_video_encoder* gsr_video_encoder_software_create(const gsr_video_encoder_software_params *params);
|
|
|
|
#endif /* GSR_ENCODER_VIDEO_SOFTWARE_H */
|