43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
/**
|
|
******************************************************************************
|
|
* @file config.h
|
|
* @author Central Lab
|
|
* @version V1.0.0
|
|
* @date 28-January-2016
|
|
* @brief Header for opus codec configuration.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
|
|
*
|
|
* Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
|
|
* You may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at:
|
|
*
|
|
* http://www.st.com/software_license_agreement_liberty_v2
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
/* Variable leng arays */
|
|
#define VAR_ARRAYS
|
|
|
|
/* Comment out the next line for floating-point code */
|
|
#define FIXED_POINT 1
|
|
|
|
#define OPUS_BUILD 1
|
|
|
|
#define PACKAGE_VERSION "1.3.1"
|
|
|
|
#endif /* CONFIG_H */
|
|
|