11 lines
250 B
C
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
|