mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
23 lines
410 B
C++
23 lines
410 B
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
#ifndef MOBILE_DEVICE
|
|
|
|
#pragma once
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
class AVIDump
|
|
{
|
|
private:
|
|
static bool CreateAVI();
|
|
static void CloseFile();
|
|
static void CheckResolution(int width, int height);
|
|
|
|
public:
|
|
static bool Start(int w, int h);
|
|
static void AddFrame();
|
|
static void Stop();
|
|
};
|
|
#endif
|