17 lines
424 B
C++
17 lines
424 B
C++
// AUTOGENERATED COPYRIGHT HEADER START
|
|
// Copyright (C) 2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
|
|
// AUTOGENERATED COPYRIGHT HEADER END
|
|
|
|
#pragma once
|
|
#include "handler.hpp"
|
|
|
|
namespace streamfx::encoder::ffmpeg {
|
|
class debug : public handler {
|
|
public:
|
|
debug();
|
|
virtual ~debug(){};
|
|
|
|
virtual void properties(ffmpeg_instance* instance, obs_properties_t* props);
|
|
};
|
|
} // namespace streamfx::encoder::ffmpeg
|