Files
pspsdk/src/video/pspvideocodec.h
Carsten Teibes 7c6e46b487 Remove outdated svn ids, change url, fix permissions
Convert to unix line endings
2020-05-08 00:50:41 +02:00

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