Files
rkKVM/external/mpp/mpp.h
2024-11-19 22:08:12 +01:00

11 lines
250 B
C

#ifndef MPP_H
#define MPP_H
int video_init(const char *device);
int mpp_init_wrapper(int fps, int bitrate);
int get_sps(unsigned char *output, int *output_len);
int capture_and_encode(unsigned char *output, int *output_len);
void cleanup();
#endif