/* * PSP Software Development Kit - http://www.pspdev.org * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * * pspaudiocodec.h - Prototypes for the sceAudiocodec library. * * Copyright (c) 2006 hitchhikr * * $Id: pspaudiocodec.h 1994 2006-08-28 10:20:32Z tyranid $ */ #ifdef __cplusplus extern "C" { #endif int sceAudiocodecCheckNeedMem(unsigned long *Buffer, int Type); int sceAudiocodecInit(unsigned long *Buffer, int Type); int sceAudiocodecDecode(unsigned long *Buffer, int Type); int sceAudiocodecGetEDRAM(unsigned long *Buffer, int Type); int sceAudiocodecReleaseEDRAM(unsigned long *Buffer); #ifdef __cplusplus } #endif