mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 15:01:38 -04:00
25 lines
427 B
C
25 lines
427 B
C
#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
|