Mesen-SX/Core/VideoRenderer.h
NovaSquirrel c0e249e993 Revert "Merge branch 'reformat_code'"
This reverts commit daf3b57e89, reversing
changes made to 7a6e0b7d77.
2021-03-10 11:13:28 -05:00

41 lines
No EOL
970 B
C++

#pragma once
#include "stdafx.h"
#include <thread>
#include "../Utilities/AutoResetEvent.h"
class IRenderingDevice;
class Console;
class IVideoRecorder;
enum class VideoCodec;
class VideoRenderer
{
private:
shared_ptr<Console> _console;
AutoResetEvent _waitForRender;
unique_ptr<std::thread> _renderThread;
IRenderingDevice* _renderer = nullptr;
atomic<bool> _stopFlag;
shared_ptr<IVideoRecorder> _recorder;
void RenderThread();
public:
VideoRenderer(shared_ptr<Console> console);
~VideoRenderer();
void StartThread();
void StopThread();
void UpdateFrame(void *frameBuffer, uint32_t width, uint32_t height);
void RegisterRenderingDevice(IRenderingDevice *renderer);
void UnregisterRenderingDevice(IRenderingDevice *renderer);
void StartRecording(string filename, VideoCodec codec, uint32_t compressionLevel);
void AddRecordingSound(int16_t* soundBuffer, uint32_t sampleCount, uint32_t sampleRate);
void StopRecording();
bool IsRecording();
};