Import SDK Types
This commit is contained in:
parent
84b3e69630
commit
4fe4c38e0d
86 changed files with 6528 additions and 27 deletions
29
include/dolphin/thp/THPAudioDecode.h
Normal file
29
include/dolphin/thp/THPAudioDecode.h
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#ifndef _THP_THPAUDIODECODE_H
|
||||
#define _THP_THPAUDIODECODE_H
|
||||
|
||||
#include "Dolphin/os.h"
|
||||
#include "THP/THPAudio.h"
|
||||
|
||||
static void* AudioDecoderForOnMemory(void* bufPtr);
|
||||
static void* AudioDecoder(void* _);
|
||||
static void AudioDecode(THPReadBuffer* readBuffer);
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
BOOL CreateAudioDecodeThread(OSPriority prio, void* param);
|
||||
void AudioDecodeThreadStart();
|
||||
void AudioDecodeThreadCancel();
|
||||
|
||||
void PushFreeAudioBuffer(void* buf);
|
||||
void PushDecodedAudioBuffer(void* buf);
|
||||
|
||||
void* PopFreeAudioBuffer();
|
||||
void* PopDecodedAudioBuffer(s32 flags);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue