d_thp with THPPlayer headers from SMS

This commit is contained in:
lepelog
2025-08-02 00:39:03 +02:00
parent 899f86a571
commit ea11808636
15 changed files with 563 additions and 40 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef _THP_THPVIDEODECODE_H
#define _THP_THPVIDEODECODE_H
#include "common.h"
#ifdef __cplusplus
extern "C" {
#endif
BOOL CreateVideoDecodeThread(s32 prioriy, void*);
void VideoDecodeThreadStart(void);
void VideoDecodeThreadCancel(void);
void* PopFreeTextureSet(void);
void* PopDecodedTextureSet(s32 flags);
void PushFreeTextureSet(void* tex);
void PushDecodedTextureSet(void* tex);
#ifdef __cplusplus
}
#endif
#endif