2022-10-13 23:16:31 +00:00
|
|
|
#ifndef GSR_CAPTURE_CAPTURE_H
|
|
|
|
#define GSR_CAPTURE_CAPTURE_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2022-10-16 00:08:40 +00:00
|
|
|
typedef struct AVCodecContext AVCodecContext;
|
2022-10-13 23:16:31 +00:00
|
|
|
typedef struct AVFrame AVFrame;
|
|
|
|
|
|
|
|
typedef struct gsr_capture gsr_capture;
|
|
|
|
|
|
|
|
struct gsr_capture {
|
2022-10-16 00:08:40 +00:00
|
|
|
/* These methods should not be called manually. Call gsr_capture_* instead */
|
|
|
|
int (*start)(gsr_capture *cap, AVCodecContext *video_codec_context);
|
|
|
|
void (*tick)(gsr_capture *cap, AVCodecContext *video_codec_context, AVFrame **frame); /* can be NULL */
|
|
|
|
bool (*should_stop)(gsr_capture *cap, bool *err); /* can be NULL */
|
2022-10-13 23:16:31 +00:00
|
|
|
int (*capture)(gsr_capture *cap, AVFrame *frame);
|
2023-10-22 02:56:34 +00:00
|
|
|
void (*capture_end)(gsr_capture *cap, AVFrame *frame); /* can be NULL */
|
2022-10-16 00:08:40 +00:00
|
|
|
void (*destroy)(gsr_capture *cap, AVCodecContext *video_codec_context);
|
2022-10-13 23:16:31 +00:00
|
|
|
|
2022-10-16 00:08:40 +00:00
|
|
|
void *priv; /* can be NULL */
|
|
|
|
bool started;
|
2022-10-13 23:16:31 +00:00
|
|
|
};
|
|
|
|
|
2022-10-16 00:08:40 +00:00
|
|
|
int gsr_capture_start(gsr_capture *cap, AVCodecContext *video_codec_context);
|
|
|
|
void gsr_capture_tick(gsr_capture *cap, AVCodecContext *video_codec_context, AVFrame **frame);
|
|
|
|
bool gsr_capture_should_stop(gsr_capture *cap, bool *err);
|
2022-10-13 23:16:31 +00:00
|
|
|
int gsr_capture_capture(gsr_capture *cap, AVFrame *frame);
|
2023-10-22 02:56:34 +00:00
|
|
|
void gsr_capture_end(gsr_capture *cap, AVFrame *frame);
|
2022-10-13 23:16:31 +00:00
|
|
|
/* Calls |gsr_capture_stop| as well */
|
2022-10-16 00:08:40 +00:00
|
|
|
void gsr_capture_destroy(gsr_capture *cap, AVCodecContext *video_codec_context);
|
2022-10-13 23:16:31 +00:00
|
|
|
|
|
|
|
#endif /* GSR_CAPTURE_CAPTURE_H */
|