Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/Core/AVIDump.h
3185 views
1
// Copyright 2008 Dolphin Emulator Project
2
// Licensed under GPLv2+
3
// Refer to the license.txt file included.
4
#ifndef MOBILE_DEVICE
5
6
#pragma once
7
8
#include "Common/CommonTypes.h"
9
#include "Common/File/Path.h"
10
11
class AVIDump {
12
private:
13
static bool CreateAVI();
14
static void CloseFile();
15
static void CheckResolution(int width, int height);
16
17
public:
18
static bool Start(int w, int h);
19
static void AddFrame();
20
static void Stop();
21
static Path LastFilename();
22
};
23
#endif
24
25