rpcsx/rpcs3/Emu/Cell/Modules/cellSysutilAvc2.cpp

511 lines
16 KiB
C++
Raw Normal View History

#include "stdafx.h"
2016-03-21 20:43:03 +01:00
#include "Emu/Cell/PPUModule.h"
#include "sceNp.h"
#include "sceNp2.h"
#include "cellSysutilAvc2.h"
2020-08-27 21:47:04 +02:00
#include "cellSysutil.h"
LOG_CHANNEL(cellSysutilAvc2);
2017-08-09 18:38:27 +02:00
template<>
void fmt_class_string<CellSysutilAvc2Error>::format(std::string& out, u64 arg)
{
2017-08-09 18:38:27 +02:00
format_enum(out, arg, [](auto error)
{
switch (error)
{
STR_CASE(CELL_AVC2_ERROR_UNKNOWN);
STR_CASE(CELL_AVC2_ERROR_NOT_SUPPORTED);
STR_CASE(CELL_AVC2_ERROR_NOT_INITIALIZED);
STR_CASE(CELL_AVC2_ERROR_ALREADY_INITIALIZED);
STR_CASE(CELL_AVC2_ERROR_INVALID_ARGUMENT);
STR_CASE(CELL_AVC2_ERROR_OUT_OF_MEMORY);
STR_CASE(CELL_AVC2_ERROR_ERROR_BAD_ID);
STR_CASE(CELL_AVC2_ERROR_INVALID_STATUS);
STR_CASE(CELL_AVC2_ERROR_TIMEOUT);
STR_CASE(CELL_AVC2_ERROR_NO_SESSION);
STR_CASE(CELL_AVC2_ERROR_WINDOW_ALREADY_EXISTS);
STR_CASE(CELL_AVC2_ERROR_TOO_MANY_WINDOWS);
STR_CASE(CELL_AVC2_ERROR_TOO_MANY_PEER_WINDOWS);
STR_CASE(CELL_AVC2_ERROR_WINDOW_NOT_FOUND);
}
return unknown;
});
}
2020-08-27 21:47:04 +02:00
vm::ptr<CellSysutilAvc2Callback> avc2_cb{};
vm::ptr<void> avc2_cb_arg{};
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetPlayerInfo(vm::cptr<SceNpMatching2RoomMemberId> player_id, vm::ptr<CellSysutilAvc2PlayerInfo> player_info)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetPlayerInfo(player_id=*0x%x, player_info=*0x%x)", player_id, player_info);
2020-08-27 21:47:04 +02:00
player_info->connected = 1;
player_info->joined = 1;
player_info->mic_attached = 0;
player_info->member_id = *player_id;
2017-08-09 18:38:27 +02:00
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2JoinChat(vm::cptr<SceNpMatching2RoomId> room_id)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2JoinChat(room_id=*0x%x)", room_id);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2StopStreaming()
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2StopStreaming()");
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2ChangeVideoResolution(CellSysutilAvc2VideoResolution resolution)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2ChangeVideoResolution(resolution=0x%x)", resolution);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2ShowScreen()
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2ShowScreen()");
return CELL_OK;
}
error_code cellSysutilAvc2GetVideoMuting(vm::ptr<u8> muting)
{
cellSysutilAvc2.todo("cellSysutilAvc2GetVideoMuting(muting=*0x%x)", muting);
*muting = 1;
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetWindowAttribute(SceNpMatching2RoomMemberId member_id, vm::ptr<CellSysutilAvc2WindowAttribute> attr)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetWindowAttribute(member_id=0x%x, attr=*0x%x)", member_id, attr);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2StopStreaming2(CellSysutilAvc2MediaType mediaType)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2StopStreaming2(mediaType=0x%x)", mediaType);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetVoiceMuting(u8 muting)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2SetVoiceMuting(muting=0x%x)", muting);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2StartVoiceDetection()
{
2017-07-24 21:25:52 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2StartVoiceDetection()");
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2UnloadAsync()
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2UnloadAsync()");
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2StopVoiceDetection()
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2StopVoiceDetection()");
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetAttribute(vm::ptr<CellSysutilAvc2Attribute> attr)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetAttribute(attr=*0x%x)", attr);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2LoadAsync(SceNpMatching2ContextId ctx_id, u32 container, vm::ptr<CellSysutilAvc2Callback> callback_func, vm::ptr<void> user_data, vm::cptr<CellSysutilAvc2InitParam> init_param)
{
2020-08-27 21:47:04 +02:00
cellSysutilAvc2.warning("cellSysutilAvc2LoadAsync(ctx_id=0x%x, container=0x%x, callback_func=*0x%x, user_data=*0x%x, init_param=*0x%x)", ctx_id, container, callback_func, user_data, init_param);
avc2_cb = callback_func;
avc2_cb_arg = user_data;
if (avc2_cb)
{
sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 {
avc2_cb(cb_ppu, CELL_AVC2_EVENT_LOAD_SUCCEEDED, 0, avc2_cb_arg);
return 0;
});
}
2017-08-09 18:38:27 +02:00
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetSpeakerVolumeLevel(f32 level)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2SetSpeakerVolumeLevel(level=0x%x)", level);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetWindowString(SceNpMatching2RoomMemberId member_id, vm::cptr<char> string)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2SetWindowString(member_id=0x%x, string=%s)", member_id, string);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2EstimateMemoryContainerSize(vm::cptr<CellSysutilAvc2InitParam> initparam, vm::ptr<u32> size)
{
2017-07-24 21:25:52 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2EstimateMemoryContainerSize(initparam=*0x%x, size=*0x%x)", initparam, size);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetVideoMuting(u8 muting)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2SetVideoMuting(muting=0x%x)", muting);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetPlayerVoiceMuting(SceNpMatching2RoomMemberId member_id, u8 muting)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2SetPlayerVoiceMuting(member_id=0x%x, muting=0x%x)", member_id, muting);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetStreamingTarget()
{
2017-08-09 18:38:27 +02:00
UNIMPLEMENTED_FUNC(cellSysutilAvc2);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2Unload()
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2Unload()");
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2DestroyWindow(SceNpMatching2RoomMemberId member_id)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2DestroyWindow(member_id=0x%x)", member_id);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetWindowPosition(SceNpMatching2RoomMemberId member_id, f32 x, f32 y, f32 z)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2SetWindowPosition(member_id=0x%x, x=0x%x, y=0x%x, z=0x%x)", member_id, x, y, z);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetSpeakerVolumeLevel(vm::ptr<f32> level)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetSpeakerVolumeLevel(level=*0x%x)", level);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2IsCameraAttached(vm::ptr<u8> status)
{
2017-07-24 21:25:52 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2IsCameraAttached(status=*0x%x)", status);
2016-03-21 20:43:03 +01:00
*status = CELL_AVC2_CAMERA_STATUS_DETACHED;
2017-07-24 21:25:52 +02:00
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2MicRead(vm::ptr<void> ptr, vm::ptr<u32> pSize)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2MicRead(ptr=*0x%x, pSize=*0x%x)", ptr, pSize);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetPlayerVoiceMuting(SceNpMatching2RoomMemberId member_id, vm::ptr<u8> muting)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetPlayerVoiceMuting(member_id=0x%x, muting=*0x%x)", member_id, muting);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2JoinChatRequest(vm::cptr<SceNpMatching2RoomId> room_id)
{
2020-08-27 21:47:04 +02:00
cellSysutilAvc2.warning("cellSysutilAvc2JoinChatRequest(room_id=*0x%x)", room_id);
if (avc2_cb)
{
sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 {
avc2_cb(cb_ppu, CELL_AVC2_EVENT_JOIN_SUCCEEDED, 0, avc2_cb_arg);
return 0;
});
}
2017-08-09 18:38:27 +02:00
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2StartStreaming()
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2StartStreaming()");
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetWindowAttribute(SceNpMatching2RoomMemberId member_id, vm::cptr<CellSysutilAvc2WindowAttribute> attr)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2SetWindowAttribute(member_id=0x%x, attr=*0x%x)", member_id, attr);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetWindowShowStatus(SceNpMatching2RoomMemberId member_id, vm::ptr<u8> visible)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetWindowShowStatus(member_id=0x%x, visible=*0x%x)", member_id, visible);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2InitParam(u16 version, vm::ptr<CellSysutilAvc2InitParam> option)
{
cellSysutilAvc2.warning("cellSysutilAvc2InitParam(version=%d, option=*0x%x)", version, option);
if (version >= 110)
{
// Notify the user that, a version different from the one, that we know the constants for, is used.
// Other versions shouldn't differ by too much, if at all - they most likely differ in other functions.
if (version != 140)
{
cellSysutilAvc2.todo("cellSysutilAvc2InitParam(): Older/newer version %d used, might cause problems.", version);
}
option->avc_init_param_version = version;
if (option->media_type == CELL_SYSUTIL_AVC2_VOICE_CHAT)
{
option->max_players = 16;
}
else if (option->media_type == CELL_SYSUTIL_AVC2_VIDEO_CHAT)
{
if (option->video_param.frame_mode == CELL_SYSUTIL_AVC2_FRAME_MODE_NORMAL)
{
option->max_players = 6;
}
else if (option->video_param.frame_mode == CELL_SYSUTIL_AVC2_FRAME_MODE_INTRA_ONLY)
{
option->max_players = 16;
}
else
{
cellSysutilAvc2.error("Unknown frame mode 0x%x", option->video_param.frame_mode);
}
}
else
{
cellSysutilAvc2.error("Unknown media type 0x%x", option->media_type);
}
}
else
{
cellSysutilAvc2.error("cellSysutilAvc2InitParam(): Unknown version %d used, please report this to a developer.", version);
}
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetWindowSize(SceNpMatching2RoomMemberId member_id, vm::ptr<f32> width, vm::ptr<f32> height)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetWindowSize(member_id=0x%x, width=*0x%x, height=*0x%x)", member_id, width, height);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetStreamPriority(u8 priority)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2SetStreamPriority(priority=0x%x)", priority);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2LeaveChatRequest()
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2LeaveChatRequest()");
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2IsMicAttached(vm::ptr<u8> status)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2IsMicAttached(status=*0x%x)", status);
*status = CELL_AVC2_MIC_STATUS_DETACHED;
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2CreateWindow(SceNpMatching2RoomMemberId member_id)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2CreateWindow(member_id=0x%x)", member_id);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetSpeakerMuting(vm::ptr<u8> muting)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetSpeakerMuting(muting=*0x%x)", muting);
2020-08-27 21:47:04 +02:00
*muting = 1;
2017-08-09 18:38:27 +02:00
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2ShowWindow(SceNpMatching2RoomMemberId member_id)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2ShowWindow(member_id=0x%x)", member_id);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetWindowSize(SceNpMatching2RoomMemberId member_id, f32 width, f32 height)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2SetWindowSize(member_id=0x%x, width=0x%x, height=0x%x)", member_id, width, height);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2EnumPlayers(vm::ptr<s32> players_num, vm::ptr<SceNpMatching2RoomMemberId> players_id)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2EnumPlayers(players_num=*0x%x, players_id=*0x%x)", players_num, players_id);
2020-08-27 21:47:04 +02:00
if (players_num)
*players_num = 1;
if (players_id)
*players_id = 1;
2017-08-09 18:38:27 +02:00
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetWindowString(SceNpMatching2RoomMemberId member_id, vm::ptr<char> string, vm::ptr<u8> len)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetWindowString(member_id=0x%x, string=*0x%x, len=*0x%x)", member_id, string, len);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2LeaveChat()
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2LeaveChat()");
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetSpeakerMuting(u8 muting)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2SetSpeakerMuting(muting=0x%x)", muting);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2Load(SceNpMatching2ContextId ctx_id, u32 container, vm::ptr<CellSysutilAvc2Callback> callback_func, vm::ptr<void> user_data, vm::cptr<CellSysutilAvc2InitParam> init_param)
{
2017-07-24 21:25:52 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2Load(ctx_id=0x%x, container=0x%x, callback_func=*0x%x, user_data=*0x%x, init_param=*0x%x)", ctx_id, container, callback_func, user_data, init_param);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2SetAttribute(vm::cptr<CellSysutilAvc2Attribute> attr)
{
2017-07-24 21:25:52 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2SetAttribute(attr=*0x%x)", attr);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2UnloadAsync2(CellSysutilAvc2MediaType mediaType)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2UnloadAsync2(mediaType=0x%x)", mediaType);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2StartStreaming2(CellSysutilAvc2MediaType mediaType)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2StartStreaming2(mediaType=0x%x)", mediaType);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2HideScreen()
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2HideScreen()");
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2HideWindow(SceNpMatching2RoomMemberId member_id)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2HideWindow(member_id=0x%x)", member_id);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetVoiceMuting(vm::ptr<u8> muting)
{
2017-07-24 21:25:52 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetVoiceMuting(muting=*0x%x)", muting);
*muting = 1;
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetScreenShowStatus(vm::ptr<u8> visible)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetScreenShowStatus(visible=*0x%x)", visible);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2Unload2(CellSysutilAvc2MediaType mediaType)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2Unload2(mediaType=0x%x)", mediaType);
return CELL_OK;
}
2017-08-09 18:38:27 +02:00
error_code cellSysutilAvc2GetWindowPosition(SceNpMatching2RoomMemberId member_id, vm::ptr<f32> x, vm::ptr<f32> y, vm::ptr<f32> z)
{
2017-08-09 18:38:27 +02:00
cellSysutilAvc2.todo("cellSysutilAvc2GetWindowPosition(member_id=0x%x, x=*0x%x, y=*0x%x, z=*0x%x)", member_id, x, y, z);
return CELL_OK;
}
2016-03-21 20:43:03 +01:00
DECLARE(ppu_module_manager::cellSysutilAvc2)("cellSysutilAvc2", []()
{
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetPlayerInfo);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2JoinChat);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2StopStreaming);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2ChangeVideoResolution);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2ShowScreen);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetVideoMuting);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetWindowAttribute);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2StopStreaming2);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetVoiceMuting);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2StartVoiceDetection);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2UnloadAsync);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2StopVoiceDetection);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetAttribute);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2LoadAsync);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetSpeakerVolumeLevel);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetWindowString);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2EstimateMemoryContainerSize);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetVideoMuting);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetPlayerVoiceMuting);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetStreamingTarget);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2Unload);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2DestroyWindow);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetWindowPosition);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetSpeakerVolumeLevel);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2IsCameraAttached);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2MicRead);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetPlayerVoiceMuting);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2JoinChatRequest);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2StartStreaming);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetWindowAttribute);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetWindowShowStatus);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2InitParam);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetWindowSize);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetStreamPriority);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2LeaveChatRequest);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2IsMicAttached);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2CreateWindow);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetSpeakerMuting);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2ShowWindow);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetWindowSize);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2EnumPlayers);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetWindowString);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2LeaveChat);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetSpeakerMuting);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2Load);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2SetAttribute);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2UnloadAsync2);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2StartStreaming2);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2HideScreen);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2HideWindow);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetVoiceMuting);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetScreenShowStatus);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2Unload2);
REG_FUNC(cellSysutilAvc2, cellSysutilAvc2GetWindowPosition);
});