2014-07-12 09:46:14 +02:00
|
|
|
#include "stdafx.h"
|
2014-07-12 16:53:36 +02:00
|
|
|
#if 0
|
2013-09-28 04:36:57 +02:00
|
|
|
|
|
|
|
|
void cellCelp8Enc_init();
|
|
|
|
|
Module cellCelp8Enc(0x0048, cellCelp8Enc_init);
|
|
|
|
|
|
|
|
|
|
// Return Codes
|
|
|
|
|
enum
|
|
|
|
|
{
|
2014-04-04 15:25:38 +02:00
|
|
|
CELL_CELP8ENC_ERROR_FAILED = 0x806140a1,
|
|
|
|
|
CELL_CELP8ENC_ERROR_SEQ = 0x806140a2,
|
|
|
|
|
CELL_CELP8ENC_ERROR_ARG = 0x806140a3,
|
|
|
|
|
CELL_CELP8ENC_ERROR_CORE_FAILED = 0x806140b1,
|
|
|
|
|
CELL_CELP8ENC_ERROR_CORE_SEQ = 0x806140b2,
|
|
|
|
|
CELL_CELP8ENC_ERROR_CORE_ARG = 0x806140b3,
|
2013-09-28 04:36:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int cellCelp8EncQueryAttr()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellCelp8EncOpen()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellCelp8EncOpenEx()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellCelp8EncClose()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellCelp8EncStart()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellCelp8EncEnd()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellCelp8EncEncodeFrame()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellCelp8EncWaitForOutput()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellCelp8EncGetAu()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellCelp8Enc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void cellCelp8Enc_init()
|
|
|
|
|
{
|
|
|
|
|
cellCelp8Enc.AddFunc(0x2d677e0c, cellCelp8EncQueryAttr);
|
|
|
|
|
cellCelp8Enc.AddFunc(0x2eb6efee, cellCelp8EncOpen);
|
|
|
|
|
cellCelp8Enc.AddFunc(0xcd48ad62, cellCelp8EncOpenEx);
|
|
|
|
|
cellCelp8Enc.AddFunc(0xfd2566b4, cellCelp8EncClose);
|
|
|
|
|
cellCelp8Enc.AddFunc(0x0f6ab57b, cellCelp8EncStart);
|
|
|
|
|
cellCelp8Enc.AddFunc(0xbbbc2c1c, cellCelp8EncEnd);
|
|
|
|
|
cellCelp8Enc.AddFunc(0x2099f86e, cellCelp8EncEncodeFrame);
|
|
|
|
|
cellCelp8Enc.AddFunc(0x29da1ea6, cellCelp8EncWaitForOutput);
|
|
|
|
|
cellCelp8Enc.AddFunc(0x48c5020d, cellCelp8EncGetAu);
|
2014-06-02 19:27:24 +02:00
|
|
|
}
|
|
|
|
|
#endif
|