/*---------------------------------------------------------------------------* Project: THP demo File: THPVideoDecode.h Copyright (C)2002-2006 Nintendo All Rights Reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. $Log: THPVideoDecode.h,v $ Revision 1.1 02/03/2006 10:00:34 aka Imported from Dolphin tree. 2 02/05/14 9:22a Suzuki Changed return value type and argument type of PopFreeTextureSet(), PushFreeTextureSet(), PopDecodedTextureSet(), PushDecodedTextureSet(). 1 02/01/16 11:04a Akagi Initial revision made by Suzuki-san (IRD). $NoKeywords: $ *---------------------------------------------------------------------------*/ #ifndef __THP_VIDEO_DECODE_H__ #define __THP_VIDEO_DECODE_H__ #include #ifdef __cplusplus extern "C" { #endif extern BOOL CreateVideoDecodeThread(OSPriority priority, u8 *ptr); extern void VideoDecodeThreadStart(void); extern void VideoDecodeThreadCancel(void); extern void *PopFreeTextureSet(); extern void PushFreeTextureSet(void *buffer); extern void *PopDecodedTextureSet(s32 flag); extern void PushDecodedTextureSet(void *buffer); #ifdef __cplusplus } #endif #endif // __THP_VIDEO_DECODE_H__