2014-07-12 09:46:14 +02:00
|
|
|
#include "stdafx.h"
|
2016-03-21 20:43:03 +01:00
|
|
|
#include "Emu/Cell/PPUModule.h"
|
2013-09-28 04:36:57 +02:00
|
|
|
|
2016-07-14 23:02:07 +02:00
|
|
|
#include "cellCelpEnc.h"
|
|
|
|
|
|
2018-08-25 14:39:00 +02:00
|
|
|
LOG_CHANNEL(cellCelpEnc);
|
2013-09-28 04:36:57 +02:00
|
|
|
|
2015-07-29 14:57:46 +02:00
|
|
|
s32 cellCelpEncQueryAttr()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 14:57:46 +02:00
|
|
|
s32 cellCelpEncOpen()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 14:57:46 +02:00
|
|
|
s32 cellCelpEncOpenEx()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-05 08:45:49 +02:00
|
|
|
s32 cellCelpEncOpenExt()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 14:57:46 +02:00
|
|
|
s32 cellCelpEncClose()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 14:57:46 +02:00
|
|
|
s32 cellCelpEncStart()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 14:57:46 +02:00
|
|
|
s32 cellCelpEncEnd()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 14:57:46 +02:00
|
|
|
s32 cellCelpEncEncodeFrame()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 14:57:46 +02:00
|
|
|
s32 cellCelpEncWaitForOutput()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 14:57:46 +02:00
|
|
|
s32 cellCelpEncGetAu()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelpEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-21 20:43:03 +01:00
|
|
|
DECLARE(ppu_module_manager::cellCelpEnc)("cellCelpEnc", []()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
2015-02-20 14:58:40 +01:00
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncQueryAttr);
|
|
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncOpen);
|
|
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncOpenEx);
|
2019-04-05 08:45:49 +02:00
|
|
|
REG_FUNC(cellCelpEnc, cellCelpEncOpenExt);
|
2015-02-20 14:58:40 +01:00
|
|
|
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 14:57:46 +02:00
|
|
|
});
|