16 lines
295 B
C
16 lines
295 B
C
|
|
#include <libavformat/avformat.h>
|
|
#include <libavcodec/avcodec.h>
|
|
#include <libavutil/avutil.h>
|
|
#include <libavresample/avresample.h>
|
|
#include <libavutil/opt.h>
|
|
#include <string.h>
|
|
|
|
typedef struct {
|
|
AVCodec *codec;
|
|
AVCodecContext *codecCtx;
|
|
AVFrame *frame;
|
|
AVDictionary *options;
|
|
} FFCtx;
|
|
|