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 cellPngEnc_init();
|
|
|
|
|
Module cellPngEnc(0x0052, cellPngEnc_init);
|
|
|
|
|
|
|
|
|
|
// Error Codes
|
|
|
|
|
enum
|
|
|
|
|
{
|
2014-04-04 15:25:38 +02:00
|
|
|
CELL_PNGENC_ERROR_ARG = 0x80611291,
|
|
|
|
|
CELL_PNGENC_ERROR_SEQ = 0x80611292,
|
|
|
|
|
CELL_PNGENC_ERROR_BUSY = 0x80611293,
|
|
|
|
|
CELL_PNGENC_ERROR_EMPTY = 0x80611294,
|
|
|
|
|
CELL_PNGENC_ERROR_RESET = 0x80611295,
|
|
|
|
|
CELL_PNGENC_ERROR_FATAL = 0x80611296,
|
2013-09-28 04:36:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int cellPngEncQueryAttr()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPngEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPngEncOpen()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPngEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPngEncOpenEx()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPngEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPngEncClose()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPngEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPngEncWaitForInput()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPngEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPngEncEncodePicture()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPngEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPngEncWaitForOutput()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPngEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPngEncGetStreamInfo()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPngEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPngEncReset()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPngEnc);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void cellPngEnc_init()
|
|
|
|
|
{
|
2015-02-20 14:58:40 +01:00
|
|
|
REG_FUNC(cellPngEnc, cellPngEncQueryAttr);
|
|
|
|
|
REG_FUNC(cellPngEnc, cellPngEncOpen);
|
|
|
|
|
REG_FUNC(cellPngEnc, cellPngEncOpenEx);
|
|
|
|
|
REG_FUNC(cellPngEnc, cellPngEncClose);
|
|
|
|
|
REG_FUNC(cellPngEnc, cellPngEncWaitForInput);
|
|
|
|
|
REG_FUNC(cellPngEnc, cellPngEncEncodePicture);
|
|
|
|
|
REG_FUNC(cellPngEnc, cellPngEncWaitForOutput);
|
|
|
|
|
REG_FUNC(cellPngEnc, cellPngEncGetStreamInfo);
|
|
|
|
|
REG_FUNC(cellPngEnc, cellPngEncReset);
|
2014-06-02 19:27:24 +02:00
|
|
|
}
|
|
|
|
|
#endif
|