pspvideocodec.h

Go to the documentation of this file.
00001 /*
00002  * PSP Software Development Kit - http://www.pspdev.org
00003  * -----------------------------------------------------------------------
00004  * Licensed under the BSD license, see LICENSE in PSPSDK root for details.
00005  *
00006  * pspvideocodec.h - Prototypes for the sceVideocodec library.
00007  *
00008  * Copyright (c) 2007 cooleyes
00009  *
00010  * $Id: pspvideocodec.h 2418 2008-08-13 23:29:18Z Raphael $
00011  */
00012  
00013 #ifndef __SCELIBVIDEOCODEC_H__
00014 #define __SCELIBVIDEOCODEC_H__
00015 
00016 #ifdef __cplusplus
00017 extern "C" {
00018 #endif
00019 
00020 int sceVideocodecOpen(unsigned long *Buffer, int Type);
00021 int sceVideocodecGetEDRAM(unsigned long *Buffer, int Type);
00022 int sceVideocodecInit(unsigned long *Buffer, int Type);
00023 int sceVideocodecDecode(unsigned long *Buffer, int Type);
00024 int sceVideocodecReleaseEDRAM(unsigned long *Buffer);
00025 
00026 // sceVideocodecGetVersion
00027 // sceVideocodecScanHeader
00028 // sceVideocodecDelete
00029 // sceVideocodecSetMemory
00030 // sceVideocodecStop
00031 
00032 #ifdef __cplusplus
00033 }
00034 #endif
00035 
00036 #endif