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 "cellCelp8Enc.h"
|
|
|
|
|
|
2017-05-13 21:30:37 +03:00
|
|
|
logs::channel cellCelp8Enc("cellCelp8Enc");
|
2013-09-28 04:36:57 +02:00
|
|
|
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelp8EncQueryAttr()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelp8EncOpen()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelp8EncOpenEx()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelp8EncClose()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelp8EncStart()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelp8EncEnd()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelp8EncEncodeFrame()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelp8EncWaitForOutput()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 15:57:46 +03:00
|
|
|
s32 cellCelp8EncGetAu()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-21 22:43:03 +03:00
|
|
|
DECLARE(ppu_module_manager::cellCelp8Enc)("cellCelp8Enc", []()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
2015-02-20 16:58:40 +03:00
|
|
|
REG_FUNC(cellCelp8Enc, cellCelp8EncQueryAttr);
|
|
|
|
|
REG_FUNC(cellCelp8Enc, cellCelp8EncOpen);
|
|
|
|
|
REG_FUNC(cellCelp8Enc, cellCelp8EncOpenEx);
|
|
|
|
|
REG_FUNC(cellCelp8Enc, cellCelp8EncClose);
|
|
|
|
|
REG_FUNC(cellCelp8Enc, cellCelp8EncStart);
|
|
|
|
|
REG_FUNC(cellCelp8Enc, cellCelp8EncEnd);
|
|
|
|
|
REG_FUNC(cellCelp8Enc, cellCelp8EncEncodeFrame);
|
|
|
|
|
REG_FUNC(cellCelp8Enc, cellCelp8EncWaitForOutput);
|
|
|
|
|
REG_FUNC(cellCelp8Enc, cellCelp8EncGetAu);
|
2015-07-29 15:57:46 +03:00
|
|
|
});
|