2024-10-08 02:29:00 +00:00
|
|
|
#ifndef LIBPLACEBO_FILTER_H
|
|
|
|
#define LIBPLACEBO_FILTER_H
|
|
|
|
|
|
|
|
#include <filesystem>
|
|
|
|
|
2024-10-10 07:23:13 +00:00
|
|
|
extern "C" {
|
|
|
|
#include <libavcodec/avcodec.h>
|
|
|
|
#include <libavfilter/buffersink.h>
|
|
|
|
#include <libavfilter/buffersrc.h>
|
|
|
|
}
|
2024-10-08 02:29:00 +00:00
|
|
|
|
|
|
|
#include "filter.h"
|
|
|
|
|
|
|
|
// LibplaceboFilter class definition
|
|
|
|
class LibplaceboFilter : public Filter {
|
|
|
|
private:
|
|
|
|
AVFilterGraph *filter_graph;
|
|
|
|
AVFilterContext *buffersrc_ctx;
|
|
|
|
AVFilterContext *buffersink_ctx;
|
|
|
|
int output_width;
|
|
|
|
int output_height;
|
|
|
|
const std::filesystem::path shader_path;
|
|
|
|
AVRational output_time_base;
|
|
|
|
|
|
|
|
public:
|
|
|
|
// Constructor
|
|
|
|
LibplaceboFilter(int width, int height, const std::filesystem::path &shader_path);
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
virtual ~LibplaceboFilter();
|
|
|
|
|
|
|
|
// Initializes the filter with decoder and encoder contexts
|
2024-10-10 07:23:13 +00:00
|
|
|
int init(AVCodecContext *dec_ctx, AVCodecContext *enc_ctx, AVBufferRef *hw_ctx) override;
|
2024-10-08 02:29:00 +00:00
|
|
|
|
|
|
|
// Processes an input frame and returns the processed frame
|
2024-10-10 07:23:13 +00:00
|
|
|
int process_frame(AVFrame *input_frame, AVFrame **output_frame) override;
|
2024-10-08 02:29:00 +00:00
|
|
|
|
|
|
|
// Flushes any remaining frames
|
|
|
|
int flush(std::vector<AVFrame *> &processed_frames) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LIBPLACEBO_FILTER_H
|