blob: 551f533b6e370d94cb10eac6d430be72579555a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
|