mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 08:21:29 +12:00
cellL10n, cellRtc, cellSail cleanup
This commit is contained in:
parent
b391e93466
commit
ce9cd13e42
3 changed files with 1036 additions and 245 deletions
File diff suppressed because it is too large
Load diff
|
@ -472,8 +472,6 @@ Module cellRtc("cellRtc", []()
|
||||||
REG_FUNC(cellRtc, cellRtcConvertUtcToLocalTime);
|
REG_FUNC(cellRtc, cellRtcConvertUtcToLocalTime);
|
||||||
REG_FUNC(cellRtc, cellRtcConvertLocalTimeToUtc);
|
REG_FUNC(cellRtc, cellRtcConvertLocalTimeToUtc);
|
||||||
|
|
||||||
// (TODO: Time Information Manipulation Functions missing)
|
|
||||||
|
|
||||||
REG_FUNC(cellRtc, cellRtcGetDosTime);
|
REG_FUNC(cellRtc, cellRtcGetDosTime);
|
||||||
REG_FUNC(cellRtc, cellRtcGetTime_t);
|
REG_FUNC(cellRtc, cellRtcGetTime_t);
|
||||||
REG_FUNC(cellRtc, cellRtcGetWin32FileTime);
|
REG_FUNC(cellRtc, cellRtcGetWin32FileTime);
|
||||||
|
|
|
@ -372,34 +372,24 @@ s32 cellSailSourceNotifyMediaStateChanged()
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellSailSourceCheck()
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellSail);
|
|
||||||
return CELL_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 cellSailSourceNotifyOpenCompleted()
|
s32 cellSailSourceNotifyOpenCompleted()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSail);
|
throw EXCEPTION("Unexpected function");
|
||||||
return CELL_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellSailSourceNotifyStartCompleted()
|
s32 cellSailSourceNotifyStartCompleted()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSail);
|
throw EXCEPTION("Unexpected function");
|
||||||
return CELL_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellSailSourceNotifyStopCompleted()
|
s32 cellSailSourceNotifyStopCompleted()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSail);
|
throw EXCEPTION("Unexpected function");
|
||||||
return CELL_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellSailSourceNotifyReadCompleted()
|
s32 cellSailSourceNotifyReadCompleted()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSail);
|
throw EXCEPTION("Unexpected function");
|
||||||
return CELL_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellSailSourceSetDiagHandler()
|
s32 cellSailSourceSetDiagHandler()
|
||||||
|
@ -410,8 +400,7 @@ s32 cellSailSourceSetDiagHandler()
|
||||||
|
|
||||||
s32 cellSailSourceNotifyCloseCompleted()
|
s32 cellSailSourceNotifyCloseCompleted()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSail);
|
throw EXCEPTION("Unexpected function");
|
||||||
return CELL_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellSailMp4MovieGetBrand()
|
s32 cellSailMp4MovieGetBrand()
|
||||||
|
@ -468,12 +457,6 @@ s32 cellSailMp4TrackGetTrackReference()
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellSailMp4ConvertTimeScale()
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellSail);
|
|
||||||
return CELL_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 cellSailAviMovieGetMovieInfo()
|
s32 cellSailAviMovieGetMovieInfo()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSail);
|
UNIMPLEMENTED_FUNC(cellSail);
|
||||||
|
@ -949,12 +932,16 @@ Module cellSail("cellSail", []()
|
||||||
REG_FUNC(cellSail, cellSailSourceNotifyStreamOut);
|
REG_FUNC(cellSail, cellSailSourceNotifyStreamOut);
|
||||||
REG_FUNC(cellSail, cellSailSourceNotifySessionError);
|
REG_FUNC(cellSail, cellSailSourceNotifySessionError);
|
||||||
REG_FUNC(cellSail, cellSailSourceNotifyMediaStateChanged);
|
REG_FUNC(cellSail, cellSailSourceNotifyMediaStateChanged);
|
||||||
REG_FUNC(cellSail, cellSailSourceNotifyOpenCompleted);
|
|
||||||
REG_FUNC(cellSail, cellSailSourceNotifyStartCompleted);
|
|
||||||
REG_FUNC(cellSail, cellSailSourceNotifyStopCompleted);
|
|
||||||
REG_FUNC(cellSail, cellSailSourceNotifyReadCompleted);
|
|
||||||
REG_FUNC(cellSail, cellSailSourceSetDiagHandler);
|
REG_FUNC(cellSail, cellSailSourceSetDiagHandler);
|
||||||
REG_FUNC(cellSail, cellSailSourceNotifyCloseCompleted);
|
|
||||||
|
{
|
||||||
|
// these functions shouldn't exist
|
||||||
|
REG_FUNC(cellSail, cellSailSourceNotifyOpenCompleted);
|
||||||
|
REG_FUNC(cellSail, cellSailSourceNotifyStartCompleted);
|
||||||
|
REG_FUNC(cellSail, cellSailSourceNotifyStopCompleted);
|
||||||
|
REG_FUNC(cellSail, cellSailSourceNotifyReadCompleted);
|
||||||
|
REG_FUNC(cellSail, cellSailSourceNotifyCloseCompleted);
|
||||||
|
}
|
||||||
|
|
||||||
REG_FUNC(cellSail, cellSailMp4MovieGetBrand);
|
REG_FUNC(cellSail, cellSailMp4MovieGetBrand);
|
||||||
REG_FUNC(cellSail, cellSailMp4MovieIsCompatibleBrand);
|
REG_FUNC(cellSail, cellSailMp4MovieIsCompatibleBrand);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue