2014-07-12 17:46:14 +10:00
|
|
|
#include "stdafx.h"
|
2015-07-29 15:57:46 +03:00
|
|
|
#include "Emu/System.h"
|
2016-03-21 22:43:03 +03:00
|
|
|
#include "Emu/Cell/PPUModule.h"
|
2013-09-28 04:36:57 +02:00
|
|
|
|
2016-07-14 22:02:07 +01:00
|
|
|
#include "cellCelpEnc.h"
|
|
|
|
|
|
2017-05-13 21:30:37 +03:00
|
|
|
logs::channel cellCelpEnc("cellCelpEnc");
|
2013-09-28 04:36:57 +02:00
|
|
|
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelpEncQueryAttr()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelpEncOpen()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelpEncOpenEx()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelpEncClose()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelpEncStart()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelpEncEnd()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelpEncEncodeFrame()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelpEncWaitForOutput()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelpEncGetAu()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-21 22:43:03 +03:00
|
|
|
DECLARE(ppu_module_manager::cellCelpEnc)("cellCelpEnc", []()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
2015-02-20 16:58:40 +03:00
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncQueryAttr);
|
|
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncOpen);
|
|
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncOpenEx);
|
|
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncClose);
|
|
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncStart);
|
|
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncEnd);
|
|
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncEncodeFrame);
|
|
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncWaitForOutput);
|
|
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncGetAu);
|
2015-07-29 15:57:46 +03:00
|
|
|
});
|