2016-08-27 14:38:05 -04:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
2016-09-04 12:52:14 -04:00
|
|
|
#ifndef MOBILE_DEVICE
|
2016-08-27 14:38:05 -04:00
|
|
|
|
|
|
|
#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();
|
2016-09-04 12:52:14 -04:00
|
|
|
};
|
|
|
|
#endif
|