pspsdk-1.0+beta2
pspvideocodec.h
Go to the documentation of this file.
1 /*
2  * PSP Software Development Kit - http://www.pspdev.org
3  * -----------------------------------------------------------------------
4  * Licensed under the BSD license, see LICENSE in PSPSDK root for details.
5  *
6  * pspvideocodec.h - Prototypes for the sceVideocodec library.
7  *
8  * Copyright (c) 2007 cooleyes
9  *
10  * $Id: pspvideocodec.h 2418 2008-08-13 23:29:18Z Raphael $
11  */
12 
13 #ifndef __SCELIBVIDEOCODEC_H__
14 #define __SCELIBVIDEOCODEC_H__
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 int sceVideocodecOpen(unsigned long *Buffer, int Type);
21 int sceVideocodecGetEDRAM(unsigned long *Buffer, int Type);
22 int sceVideocodecInit(unsigned long *Buffer, int Type);
23 int sceVideocodecDecode(unsigned long *Buffer, int Type);
24 int sceVideocodecReleaseEDRAM(unsigned long *Buffer);
25 
26 // sceVideocodecGetVersion
27 // sceVideocodecScanHeader
28 // sceVideocodecDelete
29 // sceVideocodecSetMemory
30 // sceVideocodecStop
31 
32 #ifdef __cplusplus
33 }
34 #endif
35 
36 #endif