PSPSDK 1.0+beta2
Loading...
Searching...
No Matches
pspaudiocodec.h
Go to the documentation of this file.
1/*
2 * PSP Software Development Kit - https://github.com/pspdev
3 * -----------------------------------------------------------------------
4 * Licensed under the BSD license, see LICENSE in PSPSDK root for details.
5 *
6 * pspaudiocodec.h - Prototypes for the sceAudiocodec library.
7 *
8 * Copyright (c) 2006 hitchhikr
9 *
10 */
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16#define PSP_CODEC_AT3PLUS (0x00001000)
17#define PSP_CODEC_AT3 (0x00001001)
18#define PSP_CODEC_MP3 (0x00001002)
19#define PSP_CODEC_AAC (0x00001003)
20
21
22int sceAudiocodecCheckNeedMem(unsigned long *Buffer, int Type);
23int sceAudiocodecInit(unsigned long *Buffer, int Type);
24int sceAudiocodecDecode(unsigned long *Buffer, int Type);
25int sceAudiocodecGetEDRAM(unsigned long *Buffer, int Type);
26int sceAudiocodecReleaseEDRAM(unsigned long *Buffer);
27
28#ifdef __cplusplus
29}
30#endif
int sceAudiocodecGetEDRAM(unsigned long *Buffer, int Type)
int sceAudiocodecInit(unsigned long *Buffer, int Type)
int sceAudiocodecCheckNeedMem(unsigned long *Buffer, int Type)
int sceAudiocodecReleaseEDRAM(unsigned long *Buffer)
int sceAudiocodecDecode(unsigned long *Buffer, int Type)