mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-27 18:30:56 +00:00
59 lines
1.3 KiB
C
59 lines
1.3 KiB
C
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
// Official git repository and contact information can be found at
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
#pragma once
|
|
|
|
typedef struct
|
|
{
|
|
s32 unk0;
|
|
s32 unk4;
|
|
s32 err; // 8
|
|
s32 edramAddr; // 12
|
|
s32 neededMem; // 16
|
|
s32 unk20;
|
|
u32 inBuf; // 24
|
|
s32 unk28;
|
|
u32 outBuf; // 32
|
|
s32 unk36;
|
|
s8 unk40;
|
|
s8 unk41;
|
|
s8 unk42;
|
|
s8 unk43;
|
|
s8 unk44;
|
|
s8 unk45;
|
|
s8 unk46;
|
|
s8 unk47;
|
|
s32 unk48;
|
|
s32 unk52;
|
|
s32 unk56;
|
|
s32 unk60;
|
|
s32 unk64;
|
|
s32 unk68;
|
|
s32 unk72;
|
|
s32 unk76;
|
|
s32 unk80;
|
|
s32 unk84;
|
|
s32 unk88;
|
|
s32 unk92;
|
|
s32 unk96;
|
|
s32 unk100;
|
|
u32 allocMem; // 104
|
|
// make sure the size is 128
|
|
u8 unk[20];
|
|
} SceAudiocodecCodec;
|
|
|
|
void Register_sceAudiocodec(); |