2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2009-03-28 15:27:48 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-03-28 15:27:48 -06:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
2013-02-26 18:47:48 -07:00
|
|
|
|
2009-03-28 15:27:48 -06:00
|
|
|
class AVIDump
|
|
|
|
{
|
2014-06-14 21:29:05 -06:00
|
|
|
private:
|
2017-01-23 01:13:27 -07:00
|
|
|
static bool CreateVideoFile();
|
2017-01-29 20:01:05 -07:00
|
|
|
static void CloseVideoFile();
|
2016-06-24 20:41:10 -06:00
|
|
|
static void CheckResolution(int width, int height);
|
2014-10-04 01:28:01 -06:00
|
|
|
|
2014-06-14 21:29:05 -06:00
|
|
|
public:
|
2016-11-04 11:19:35 -06:00
|
|
|
struct Frame
|
|
|
|
{
|
|
|
|
u64 ticks = 0;
|
|
|
|
u32 ticks_per_second = 0;
|
|
|
|
bool first_frame = false;
|
2016-11-04 11:24:03 -06:00
|
|
|
int savestate_index = 0;
|
2016-11-04 11:19:35 -06:00
|
|
|
};
|
|
|
|
|
2016-10-08 08:23:04 -06:00
|
|
|
static bool Start(int w, int h);
|
2016-11-04 11:19:35 -06:00
|
|
|
static void AddFrame(const u8* data, int width, int height, int stride, const Frame& state);
|
2016-06-24 02:43:46 -06:00
|
|
|
static void Stop();
|
|
|
|
static void DoState();
|
2016-11-04 11:19:35 -06:00
|
|
|
|
2017-05-22 13:27:10 -06:00
|
|
|
#if defined(HAVE_FFMPEG)
|
2016-11-04 11:19:35 -06:00
|
|
|
static Frame FetchState(u64 ticks);
|
|
|
|
#else
|
|
|
|
static Frame FetchState(u64 ticks) { return {}; }
|
|
|
|
#endif
|
2009-03-28 15:27:48 -06:00
|
|
|
};
|