mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 23:19:11 +00:00
34 lines
669 B
C
34 lines
669 B
C
#ifndef ENCODER_H
|
|
#define ENCODER_H
|
|
|
|
extern "C" {
|
|
#include <libavcodec/avcodec.h>
|
|
#include <libavformat/avformat.h>
|
|
#include <libavutil/opt.h>
|
|
}
|
|
|
|
#include "libvideo2x.h"
|
|
|
|
int init_encoder(
|
|
AVBufferRef *hw_ctx,
|
|
const char *out_fname,
|
|
AVFormatContext *ifmt_ctx,
|
|
AVFormatContext **ofmt_ctx,
|
|
AVCodecContext **enc_ctx,
|
|
AVCodecContext *dec_ctx,
|
|
EncoderConfig *encoder_config,
|
|
int vstream_idx,
|
|
int **stream_map
|
|
);
|
|
|
|
int encode_and_write_frame(
|
|
AVFrame *frame,
|
|
AVCodecContext *enc_ctx,
|
|
AVFormatContext *ofmt_ctx,
|
|
int vstream_idx
|
|
);
|
|
|
|
int flush_encoder(AVCodecContext *enc_ctx, AVFormatContext *ofmt_ctx);
|
|
|
|
#endif // ENCODER_H
|