Files
One-KVM/libs/hwcodec/cpp/mux/mux_ffi.h
mofeng-git d143d158e4 init
2025-12-28 18:19:16 +08:00

15 lines
400 B
C

#ifndef MUX_FFI_H
#define MUX_FFI_H
#include <stdint.h>
void *hwcodec_new_muxer(const char *filename, int width, int height, int is265,
int framerate);
int hwcodec_write_video_frame(void *muxer, const uint8_t *data, int len,
int64_t pts_ms, int key);
int hwcodec_write_tail(void *muxer);
void hwcodec_free_muxer(void *muxer);
#endif // FFI_H