uOFW
Reverse engineered PSP kernel 6.60.
Loading...
Searching...
No Matches
lib_sas.h
1/* Copyright (C) 2011 - 2016 The uOFW team
2 See the file COPYING for copying permission.
3*/
4
11#ifndef LIB_SAS_H
12#define LIB_SAS_H
13
14/* SAS driver specific error codes. */
15
16#define SCE_SAS_ERROR_ADDRESS (0x80420005)
17
18#define SCE_SAS_ERROR_VOICE_INDEX (0x80420010)
19#define SCE_SAS_ERROR_NOISE_CLOCK (0x80420011)
20#define SCE_SAS_ERROR_PITCH_VAL (0x80420012)
21#define SCE_SAS_ERROR_ADSR_MODE (0x80420013)
22#define SCE_SAS_ERROR_ADPCM_SIZE (0x80420014)
23#define SCE_SAS_ERROR_LOOP_MODE (0x80420015)
24#define SCE_SAS_ERROR_INVALID_STATE (0x80420016)
25#define SCE_SAS_ERROR_VOLUME_VAL (0x80420018)
26#define SCE_SAS_ERROR_ADSR_VAL (0x80420019)
27#define SCE_SAS_ERROR_PCM_SIZE (0x8042001a)
28#define SCE_SAS_ERROR_ATRAC3_SIZE (0x8042001b)
29
30#define SCE_SAS_ERROR_FX_TYPE (0x80420020)
31#define SCE_SAS_ERROR_FX_FEEDBACK (0x80420021)
32#define SCE_SAS_ERROR_FX_DELAY (0x80420022)
33#define SCE_SAS_ERROR_FX_VOLUME_VAL (0x80420023)
34#define SCE_SAS_ERROR_FX_UNAVAILABLE (0x80420024)
35
36#define SCE_SAS_ERROR_BUSY (0x80420030)
37
38#define SCE_SAS_ERROR_CHANGE_AT3_VOICE (0x80420040)
39#define SCE_SAS_ERROR_NOT_AT3_VOICE (0x80420041)
40#define SCE_SAS_ERROR_NO_CONCATENATE_SPACE (0x80420042)
41
42#define SCE_SAS_ERROR_NOTINIT (0x80420100)
43#define SCE_SAS_ERROR_ALRDYINIT (0x80420101)
44#define SCE_SAS_ERROR_INVALID_ATRAC3 (0x80420102)
45#define SCE_SAS_ERROR_SMALL_ATRAC3_SIZE (0x80420103)
46
47#endif /* LIB_SAS_H */
48