obs-StreamFX/source/encoders/handlers/debug_handler.hpp

20 lines
727 B
C++
Raw Normal View History

// AUTOGENERATED COPYRIGHT HEADER START
// Copyright (C) 2020-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
// AUTOGENERATED COPYRIGHT HEADER END
2020-01-13 00:52:30 +00:00
#pragma once
#include "handler.hpp"
namespace streamfx::encoder::ffmpeg::handler {
2020-01-13 21:40:15 +00:00
class debug_handler : public handler {
public:
virtual ~debug_handler(){};
virtual void get_defaults(obs_data_t* settings, const AVCodec* codec, AVCodecContext* context, bool hw_encode) override;
2020-01-13 00:52:30 +00:00
virtual void get_properties(obs_properties_t* props, const AVCodec* codec, AVCodecContext* context, bool hw_encode) override;
2020-01-13 00:52:30 +00:00
2020-01-13 21:40:15 +00:00
virtual void update(obs_data_t* settings, const AVCodec* codec, AVCodecContext* context) override;
};
} // namespace streamfx::encoder::ffmpeg::handler