mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
* cellHttp: add error codes Adds error codes for cellHttp and cellHttps * libDaisy: adds error codes and definitions Adds error codes, assertations and definitions for cellDaisy. * cellHttpUtil: add error codes Adds error codes for cellHttpUtil. * cellCelp8Enc: moves error codes, adds definitions Moves error codes to cellCelp8Enc.h, adds some definitions. * cellCelpEnc: moves error codes, adds definitions * cellJpgEnc: adds error codes and definitions Moves the existant error codes to cellJpgEnc.h and adds more error codes / definitions. * cellVoice: moves error codes, adds definitions Moves error codes to cellVoice.h, adds most cellVoice definitions * Fix typos
81 lines
1.4 KiB
C++
81 lines
1.4 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
#include "cellJpgEnc.h"
|
|
|
|
logs::channel cellJpgEnc("cellJpgEnc", logs::level::notice);
|
|
|
|
|
|
s32 cellJpgEncQueryAttr()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellJpgEnc);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 cellJpgEncOpen()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellJpgEnc);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 cellJpgEncOpenEx()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellJpgEnc);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 cellJpgEncClose()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellJpgEnc);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 cellJpgEncWaitForInput()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellJpgEnc);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 cellJpgEncEncodePicture()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellJpgEnc);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 cellJpgEncEncodePicture2()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellJpgEnc);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 cellJpgEncWaitForOutput()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellJpgEnc);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 cellJpgEncGetStreamInfo()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellJpgEnc);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 cellJpgEncReset()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellJpgEnc);
|
|
return CELL_OK;
|
|
}
|
|
|
|
DECLARE(ppu_module_manager::cellJpgEnc)("cellJpgEnc", []()
|
|
{
|
|
REG_FUNC(cellJpgEnc, cellJpgEncQueryAttr);
|
|
REG_FUNC(cellJpgEnc, cellJpgEncOpen);
|
|
REG_FUNC(cellJpgEnc, cellJpgEncOpenEx);
|
|
REG_FUNC(cellJpgEnc, cellJpgEncClose);
|
|
REG_FUNC(cellJpgEnc, cellJpgEncWaitForInput);
|
|
REG_FUNC(cellJpgEnc, cellJpgEncEncodePicture);
|
|
REG_FUNC(cellJpgEnc, cellJpgEncEncodePicture2);
|
|
REG_FUNC(cellJpgEnc, cellJpgEncWaitForOutput);
|
|
REG_FUNC(cellJpgEnc, cellJpgEncGetStreamInfo);
|
|
REG_FUNC(cellJpgEnc, cellJpgEncReset);
|
|
});
|