mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-12-26 02:25:13 +00:00
35 lines
870 B
C
35 lines
870 B
C
/*
|
|
* PSP Software Development Kit - https://github.com/pspdev
|
|
* -----------------------------------------------------------------------
|
|
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
|
*
|
|
* pspvideocodec.h - Prototypes for the sceVideocodec library.
|
|
*
|
|
* Copyright (c) 2007 cooleyes
|
|
*
|
|
*/
|
|
|
|
#ifndef __SCELIBVIDEOCODEC_H__
|
|
#define __SCELIBVIDEOCODEC_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int sceVideocodecOpen(unsigned long *Buffer, int Type);
|
|
int sceVideocodecGetEDRAM(unsigned long *Buffer, int Type);
|
|
int sceVideocodecInit(unsigned long *Buffer, int Type);
|
|
int sceVideocodecDecode(unsigned long *Buffer, int Type);
|
|
int sceVideocodecReleaseEDRAM(unsigned long *Buffer);
|
|
|
|
// sceVideocodecGetVersion
|
|
// sceVideocodecScanHeader
|
|
// sceVideocodecDelete
|
|
// sceVideocodecSetMemory
|
|
// sceVideocodecStop
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |