| /****************************************************************************** |
| * * |
| * Copyright (C) 2018 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 |
| * |
| * 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. |
| * |
| ***************************************************************************** |
| * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore |
| */ |
| #ifndef IXHEAACD_PEAK_LIMITER_STRUCT_DEF_H |
| #define IXHEAACD_PEAK_LIMITER_STRUCT_DEF_H |
| |
| #define MAX_CHANNEL 6 |
| /*(PEAK_LIM_SIZE = ATTACK_TIME * MAX_SAMPLING_RATE / 1000) + 1*/ |
| #define PEAK_LIM_SIZE 481 |
| #define PEAK_LIM_BUFFER_SIZE PEAK_LIM_SIZE *(MAX_CHANNEL + 1) |
| |
| #define DEFAULT_ATTACK_TIME_MS (5.0f) |
| #define DEFAULT_RELEASE_TIME_MS (50.0f) |
| |
| typedef struct ia_peak_limiter_struct { |
| FLOAT32 attack_time; |
| FLOAT32 release_time; |
| FLOAT32 attack_constant; |
| FLOAT32 release_constant; |
| FLOAT32 limit_threshold; |
| UWORD32 num_channels; |
| UWORD32 sample_rate; |
| UWORD32 attack_time_samples; |
| UWORD32 limiter_on; |
| FLOAT32 gain_modified; |
| FLOAT64 pre_smoothed_gain; |
| FLOAT32 *delayed_input; |
| UWORD32 delayed_input_index; |
| FLOAT32 *max_buf; |
| FLOAT32 min_gain; |
| FLOAT32 buffer[PEAK_LIM_BUFFER_SIZE]; |
| WORD32 max_idx; |
| WORD32 cir_buf_pnt; |
| } ia_peak_limiter_struct; |
| |
| #endif /* IXHEAACD_PEAK_LIMITER_STRUCT_DEF_H */ |