2016-03-21 20:43:03 +01:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
|
|
2017-05-13 20:30:37 +02:00
|
|
|
logs::channel cellVideoExport("cellVideoExport");
|
2016-03-21 20:43:03 +01:00
|
|
|
|
|
|
|
|
s32 cellVideoExportProgress()
|
|
|
|
|
{
|
2016-08-08 18:01:06 +02:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2016-03-21 20:43:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellVideoExportInitialize2()
|
|
|
|
|
{
|
2016-08-08 18:01:06 +02:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2016-03-21 20:43:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellVideoExportInitialize()
|
|
|
|
|
{
|
2016-08-08 18:01:06 +02:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2016-03-21 20:43:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellVideoExportFromFileWithCopy()
|
|
|
|
|
{
|
2016-08-08 18:01:06 +02:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2016-03-21 20:43:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellVideoExportFromFile()
|
|
|
|
|
{
|
2016-08-08 18:01:06 +02:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2016-03-21 20:43:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellVideoExportFinalize()
|
|
|
|
|
{
|
2016-08-08 18:01:06 +02:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2016-03-21 20:43:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DECLARE(ppu_module_manager::cellVideoExport)("cellVideoExportUtility", []()
|
|
|
|
|
{
|
|
|
|
|
REG_FUNC(cellVideoExportUtility, cellVideoExportProgress);
|
|
|
|
|
REG_FUNC(cellVideoExportUtility, cellVideoExportInitialize2);
|
|
|
|
|
REG_FUNC(cellVideoExportUtility, cellVideoExportInitialize);
|
|
|
|
|
REG_FUNC(cellVideoExportUtility, cellVideoExportFromFileWithCopy);
|
|
|
|
|
REG_FUNC(cellVideoExportUtility, cellVideoExportFromFile);
|
|
|
|
|
REG_FUNC(cellVideoExportUtility, cellVideoExportFinalize);
|
|
|
|
|
});
|