mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-29 16:09:10 +00:00
f8dcad3aef
* chore(libvideo2x)!: replace the C API with C++ API * fix: convert wide string to u8 for av_opt_set * style: removed unnecessary enum and struct specifiers Signed-off-by: k4yt3x <i@k4yt3x.com>
20 lines
405 B
C
20 lines
405 B
C
#ifndef FRAMES_PROCESSOR_H
|
|
#define FRAMES_PROCESSOR_H
|
|
|
|
#include "decoder.h"
|
|
#include "encoder.h"
|
|
#include "libvideo2x.h"
|
|
#include "processor.h"
|
|
|
|
int process_frames(
|
|
const EncoderConfig &enc_cfg,
|
|
const ProcessorConfig &proc_cfg,
|
|
VideoProcessingContext *proc_ctx,
|
|
Decoder &decoder,
|
|
Encoder &encoder,
|
|
Processor *processor,
|
|
bool benchmark = false
|
|
);
|
|
|
|
#endif // FRAMES_PROCESSOR_H
|