uOFW
Reverse engineered PSP kernel 6.60.
Loading...
Searching...
No Matches
lib_mpeg.h
1/* Copyright (C) 2011 - 2016 The uOFW team
2 See the file COPYING for copying permission.
3*/
4
15#ifndef LIB_MPEG_H
16#define LIB_MPEG_H
17
18#include "common\errors.h"
19
20/* lib_mpeg specific error codes. */
21
22/* for general libmpeg & Demux */
23
24#define SCE_MPEG_ERROR_OK SCE_ERROR_OK
25#define SCE_MPEG_ERROR_NOT_COMPLETED 0x80618001
26#define SCE_MPEG_ERROR_INVALID_VALUE 0x806101FE
27#define SCE_MPEG_ERROR_UNMATCHED_VERSION 0x80610002
28#define SCE_MPEG_ERROR_INVALID_POINTER 0x80610103
29#define SCE_MPEG_ERROR_OUT_OF_MEMORY 0x80610022
30#define SCE_MPEG_ERROR_NO_RAPI 0x80618004
31#define SCE_MPEG_ERROR_ALREADY_USED 0x80618005
32#define SCE_MPEG_ERROR_INTERNAL 0x80618006
33#define SCE_MPEG_ERROR_ILLEGAL_STREAM 0x80618007
34#define SCE_MPEG_ERROR_INSUFFICIENT_STACKSIZE 0x80618008
35#define SCE_MPEG_ERROR_NOT_INITIALIZE 0x80618009
36
37/* for VIDEO Decoder */
38
39#define SCE_MPEG_ERROR_VIDEO_INVALID_VALUE 0x806201FE
40#define SCE_MPEG_ERROR_VIDEO_UNMATCHED_VERSION 0x80620002
41#define SCE_MPEG_ERROR_VIDEO_ERROR 0x80628001
42#define SCE_MPEG_ERROR_VIDEO_FATAL 0x80628002
43
44/* for AUDIO Decoder */
45
46#define SCE_MPEG_ERROR_AUDIO_UNKNOWN_ERROR 0x807F0001
47#define SCE_MPEG_ERROR_AUDIO_FATAL 0x807F00FC
48#define SCE_MPEG_ERROR_AUDIO_ERROR 0x807F00FD
49#define SCE_MPEG_ERROR_AUDIO_INVALID_VALUE 0x807F00FF
50
51#endif /* LIB_MPEG_H */
52