mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 06:59:11 +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>
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
#ifndef PROCESSOR_FACTORY_H
|
|
#define PROCESSOR_FACTORY_H
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <unordered_map>
|
|
|
|
#include "processor.h"
|
|
|
|
// Processor Factory Class
|
|
class ProcessorFactory {
|
|
public:
|
|
using Creator = std::function<std::unique_ptr<Processor>(const ProcessorConfig &, uint32_t)>;
|
|
|
|
// Singleton instance accessor
|
|
static ProcessorFactory &instance();
|
|
|
|
// Register a processor type with its creation function
|
|
void register_processor(ProcessorType type, Creator creator);
|
|
|
|
// Create a processor instance based on configuration
|
|
std::unique_ptr<Processor>
|
|
create_processor(const ProcessorConfig &proc_cfg, uint32_t vk_device_index) const;
|
|
|
|
private:
|
|
// Private constructor for Singleton
|
|
ProcessorFactory() = default;
|
|
|
|
// Map of processor types to their creation functions
|
|
std::unordered_map<ProcessorType, Creator> creators;
|
|
|
|
// Static initializer for default processors
|
|
static void init_default_processors(ProcessorFactory &factory);
|
|
};
|
|
|
|
#endif // PROCESSOR_FACTORY_H
|