You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
FFmpeg-Invoker/library/src/main/cpp/ffmpeg_thread.h

14 lines
333 B

#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"
#include "libswscale/swscale.h"
#include "ffmpeg/ffmpeg.h"
#include <pthread.h>
#include <string.h>
int ffmpeg_thread_run_cmd(int cmdnum,char **argv);
void ffmpeg_thread_exit(int ret);
void ffmpeg_thread_callback(void (*cb)(int ret));
void ffmpeg_thread_cancel();