mirror of
https://github.com/k4yt3x/video2x.git
synced 2025-01-01 10:29:09 +00:00
16 lines
302 B
C
16 lines
302 B
C
#ifndef DECODER_H
|
|
#define DECODER_H
|
|
|
|
#include <libavcodec/avcodec.h>
|
|
#include <libavfilter/avfilter.h>
|
|
#include <libavformat/avformat.h>
|
|
|
|
int init_decoder(
|
|
const char *input_filename,
|
|
AVFormatContext **fmt_ctx,
|
|
AVCodecContext **dec_ctx,
|
|
int *video_stream_index
|
|
);
|
|
|
|
#endif // DECODER_H
|