mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 06:59:11 +00:00
22 lines
499 B
C
22 lines
499 B
C
#ifndef ENCODER_H
|
|
#define ENCODER_H
|
|
|
|
#include <libavcodec/avcodec.h>
|
|
#include <libavformat/avformat.h>
|
|
|
|
#include "libvideo2x.h"
|
|
|
|
int init_encoder(
|
|
const char *output_filename,
|
|
AVFormatContext **ofmt_ctx,
|
|
AVCodecContext **enc_ctx,
|
|
AVCodecContext *dec_ctx,
|
|
EncoderConfig *encoder_config
|
|
);
|
|
|
|
int encode_and_write_frame(AVFrame *frame, AVCodecContext *enc_ctx, AVFormatContext *ofmt_ctx);
|
|
|
|
int flush_encoder(AVCodecContext *enc_ctx, AVFormatContext *ofmt_ctx);
|
|
|
|
#endif // ENCODER_H
|