summaryrefslogtreecommitdiff
path: root/hifi/xaf/hifi-dpf/plugins/cadence/pcm_proc/xa-pcm-api.h
blob: cb14dad034e270356e5ed081e0ae2d514a5d6085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*******************************************************************************
* Copyright (C) 2018 Cadence Design Systems, Inc.
* 
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to use this Software with Cadence processor cores only and 
* not with any other processors and platforms, subject to
* the following conditions:
* 
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
* 
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

******************************************************************************/

/*******************************************************************************
 * xa-pcm-api.h
 *
 * Generic PCM format converter API
 *
 ******************************************************************************/

#ifndef __XA_PCM_API_H__
#define __XA_PCM_API_H__

/*******************************************************************************
 * Includes
 ******************************************************************************/

#include "xa_type_def.h"
#include "xa_error_standards.h"
#include "xa_apicmd_standards.h"
#include "xa_memory_standards.h"

/*******************************************************************************
 * Constants definitions
 ******************************************************************************/

/* ...codec-specific configuration parameters */
enum xa_config_param_pcm {
    XA_PCM_CONFIG_PARAM_SAMPLE_RATE         = 0,
    XA_PCM_CONFIG_PARAM_IN_PCM_WIDTH        = 1,
    XA_PCM_CONFIG_PARAM_IN_CHANNELS         = 2,
    XA_PCM_CONFIG_PARAM_OUT_PCM_WIDTH       = 3,
    XA_PCM_CONFIG_PARAM_OUT_CHANNELS        = 4,
    XA_PCM_CONFIG_PARAM_CHANROUTING         = 5,
    XA_PCM_CONFIG_PARAM_NUM                 = 6,
};

/* ...component identifier (informative) */
#define XA_CODEC_PCM                  16

/*******************************************************************************
 * Class 0: API Errors
 ******************************************************************************/

#define XA_PCM_API_NONFATAL(e)          \
    XA_ERROR_CODE(xa_severity_nonfatal, xa_class_api, XA_CODEC_PCM, (e))

#define XA_PCM_API_FATAL(e)             \
    XA_ERROR_CODE(xa_severity_fatal, xa_class_api, XA_CODEC_PCM, (e))

enum xa_error_nonfatal_api_pcm {
    XA_PCM_API_NONFATAL_MAX = XA_PCM_API_NONFATAL(0)
};

enum xa_error_fatal_api_pcm {
    XA_PCM_API_FATAL_MAX = XA_PCM_API_FATAL(0)
};

/*******************************************************************************
 * Class 1: Configuration Errors
 ******************************************************************************/

#define XA_PCM_CONFIG_NONFATAL(e)       \
    XA_ERROR_CODE(xa_severity_nonfatal, xa_class_config, XA_CODEC_PCM, (e))

#define XA_PCM_CONFIG_FATAL(e)          \
    XA_ERROR_CODE(xa_severity_fatal, xa_class_config, XA_CODEC_PCM, (e))

enum xa_error_nonfatal_config_pcm {
    XA_PCM_CONFIG_NONFATAL_RANGE    = XA_PCM_CONFIG_NONFATAL(0),
    XA_PCM_CONFIG_NONFATAL_STATE    = XA_PCM_CONFIG_NONFATAL(1),
    XA_PCM_CONFIG_NONFATAL_MAX      = XA_PCM_CONFIG_NONFATAL(2)
};

enum xa_error_fatal_config_pcm {
    XA_PCM_CONFIG_FATAL_RANGE       = XA_PCM_CONFIG_FATAL(0),
    XA_PCM_CONFIG_FATAL_MAX         = XA_PCM_CONFIG_FATAL(1)
};

/*******************************************************************************
 * Class 2: Execution Class Errors
 ******************************************************************************/

#define XA_PCM_EXEC_NONFATAL(e)         \
    XA_ERROR_CODE(xa_severity_nonfatal, xa_class_execute, XA_CODEC_PCM, (e))

#define XA_PCM_EXEC_FATAL(e)            \
    XA_ERROR_CODE(xa_severity_fatal, xa_class_execute, XA_CODEC_PCM, (e))

enum xa_error_nonfatal_execute_pcm {
    XA_PCM_EXEC_NONFATAL_STATE      = XA_PCM_EXEC_NONFATAL(0),
    XA_PCM_EXEC_NONFATAL_NO_DATA    = XA_PCM_EXEC_NONFATAL(1),
    XA_PCM_EXEC_NONFATAL_INPUT      = XA_PCM_EXEC_NONFATAL(2),
    XA_PCM_EXEC_NONFATAL_OUTPUT     = XA_PCM_EXEC_NONFATAL(3),
    XA_PCM_EXEC_NONFATAL_MAX        = XA_PCM_EXEC_NONFATAL(4)
};

enum xa_error_fatal_execute_pcm {
    XA_PCM_EXEC_FATAL_STATE         = XA_PCM_EXEC_FATAL(0),
    XA_PCM_EXEC_FATAL_INPUT         = XA_PCM_EXEC_FATAL(1),
    XA_PCM_EXEC_FATAL_OUTPUT        = XA_PCM_EXEC_FATAL(2),
    XA_PCM_EXEC_FATAL_MAX           = XA_PCM_EXEC_FATAL(3)
};

/*******************************************************************************
 * API function definition
 ******************************************************************************/

#if defined(USE_DLL) && defined(_WIN32)
#define DLL_SHARED __declspec(dllimport)
#elif defined (_WINDLL)
#define DLL_SHARED __declspec(dllexport)
#else
#define DLL_SHARED
#endif

#if defined(__cplusplus)
extern "C" {
#endif  /* __cplusplus */
DLL_SHARED xa_codec_func_t xa_pcm_codec;
#if defined(__cplusplus)
}
#endif  /* __cplusplus */

#endif /* __XA_PCM_API_H__ */