mirror of
https://github.com/k4yt3x/video2x.git
synced 2025-01-14 11:48:53 +00:00
26 lines
491 B
C++
26 lines
491 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
|
|
extern "C" {
|
|
#include <libavcodec/avcodec.h>
|
|
#include <libavfilter/avfilter.h>
|
|
}
|
|
|
|
namespace video2x {
|
|
namespace processors {
|
|
|
|
int init_libplacebo(
|
|
AVFilterGraph** filter_graph,
|
|
AVFilterContext** buffersrc_ctx,
|
|
AVFilterContext** buffersink_ctx,
|
|
AVCodecContext* dec_ctx,
|
|
int out_width,
|
|
int out_height,
|
|
uint32_t vk_device_index,
|
|
const std::filesystem::path& shader_path
|
|
);
|
|
|
|
} // namespace processors
|
|
} // namespace video2x
|