mirror of
https://github.com/k4yt3x/video2x.git
synced 2025-01-01 10:29:09 +00:00
20 lines
420 B
C
20 lines
420 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 *encoder_config,
|
||
|
const ProcessorConfig *processor_config,
|
||
|
VideoProcessingContext *proc_ctx,
|
||
|
Decoder &decoder,
|
||
|
Encoder &encoder,
|
||
|
Processor *processor,
|
||
|
bool benchmark = false
|
||
|
);
|
||
|
|
||
|
#endif // FRAMES_PROCESSOR_H
|