diff options
author | Felicia Lim <flim@google.com> | 2019-03-01 13:00:18 -0800 |
---|---|---|
committer | Felicia Lim <flim@google.com> | 2019-03-01 15:15:36 -0800 |
commit | db082963b98323d88535f4522ba710208ba93a1a (patch) | |
tree | d0144af4bd011a3239721a56024da80415141a0c | |
parent | 6554681d17b1a6bfe79cfeff51cbeeeaec279a3f (diff) | |
download | opus-db082963b98323d88535f4522ba710208ba93a1a.tar.gz |
Fix mismatching arg names in function declaration and definition
-rw-r--r-- | celt/rate.h | 2 | ||||
-rw-r--r-- | src/mapping_matrix.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/celt/rate.h b/celt/rate.h index 852b9d6f..fad5e412 100644 --- a/celt/rate.h +++ b/celt/rate.h @@ -95,7 +95,7 @@ static OPUS_INLINE int pulses2bits(const CELTMode *m, int band, int LM, int puls @param pulses Number of pulses per band (returned) @return Total number of bits allocated */ -int clt_compute_allocation(const CELTMode *m, int start, int end, const int *offsets, const int *cap, int alloc_trim, int *intensity, int *dual_stero, +int clt_compute_allocation(const CELTMode *m, int start, int end, const int *offsets, const int *cap, int alloc_trim, int *intensity, int *dual_stereo, opus_int32 total, opus_int32 *balance, int *pulses, int *ebits, int *fine_priority, int C, int LM, ec_ctx *ec, int encode, int prev, int signalBandwidth); #endif diff --git a/src/mapping_matrix.h b/src/mapping_matrix.h index 9c20483e..98bc82df 100644 --- a/src/mapping_matrix.h +++ b/src/mapping_matrix.h @@ -53,7 +53,7 @@ opus_int32 mapping_matrix_get_size(int rows, int cols); opus_int16 *mapping_matrix_get_data(const MappingMatrix *matrix); void mapping_matrix_init( - MappingMatrix * const st, + MappingMatrix * const matrix, int rows, int cols, int gain, |