pspsdk-1.0+beta2
psputility_avmodules.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  * psputility_avmodules.h - Load audio/video modules from user mode on 2.xx+
7  *
8  * Copyright (c) 2007 David Perry <tias_dp@hotmail.com>
9  *
10  */
11 #ifndef __PSPUTILITY_AVMODULES_H__
12 #define __PSPUTILITY_AVMODULES_H__
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 #include <psptypes.h>
19 
20 #define PSP_AV_MODULE_AVCODEC 0
21 #define PSP_AV_MODULE_SASCORE 1
22 #define PSP_AV_MODULE_ATRAC3PLUS 2 // Requires PSP_AV_MODULE_AVCODEC loading first
23 #define PSP_AV_MODULE_MPEGBASE 3 // Requires PSP_AV_MODULE_AVCODEC loading first
24 #define PSP_AV_MODULE_MP3 4
25 #define PSP_AV_MODULE_VAUDIO 5
26 #define PSP_AV_MODULE_AAC 6
27 #define PSP_AV_MODULE_G729 7
28 
37 int sceUtilityLoadAvModule(int module);
38 
46 int sceUtilityUnloadAvModule(int module);
47 
48 #ifdef __cplusplus
49 }
50 #endif
51 
52 #endif