Import SDK Types
This commit is contained in:
parent
84b3e69630
commit
4fe4c38e0d
86 changed files with 6528 additions and 27 deletions
31
include/dolphin/thp/THPVideoDecode.h
Normal file
31
include/dolphin/thp/THPVideoDecode.h
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
#ifndef _DOLPHIN_THPVIDEODECODE
|
||||
#define _DOLPHIN_THPVIDEODECODE
|
||||
|
||||
#include "dolphin/thp/THPRead.h"
|
||||
|
||||
static void* VideoDecoder(void*);
|
||||
static void* VideoDecoderForOnMemory(void*);
|
||||
static void VideoDecode(THPReadBuffer*);
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif // ifdef __cplusplus
|
||||
s32 THPVideoDecode(void* file, void* tileY, void* tileU, void* tileV, void* work);
|
||||
BOOL CreateVideoDecodeThread(OSPriority priority, void* task);
|
||||
void VideoDecodeThreadStart();
|
||||
void VideoDecodeThreadCancel();
|
||||
OSMessage PopFreeTextureSet();
|
||||
BOOL PushFreeTextureSet(OSMessage*);
|
||||
OSMessage PopDecodedTextureSet(s32 flags);
|
||||
BOOL PushDecodedTextureSet(OSMessage*);
|
||||
|
||||
extern BOOL VideoDecodeThreadCreated;
|
||||
extern OSMessageQueue FreeTextureSetQueue;
|
||||
extern OSMessageQueue DecodedTextureSetQueue;
|
||||
extern OSThread VideoDecodeThread;
|
||||
|
||||
#ifdef __cplusplus
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif // _DOLPHIN_THPVIDEODECODE
|
||||
Loading…
Add table
Add a link
Reference in a new issue