diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-12-24 12:13:03 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-12-24 12:13:03 +0000 |
commit | 43a6ca2c3d2fd3ebd262e08b249e57d6f0902aba (patch) | |
tree | 8ae09d3586e443281d76b941c4a5557c46577fba /libavcodec/acelp_vectors.h | |
parent | 251822897f02f5233211df81f6d5e91ae0dcfff8 (diff) | |
download | ffmpeg-43a6ca2c3d2fd3ebd262e08b249e57d6f0902aba.tar.gz |
cosmetics: Reformat some function declarations.
Originally committed as revision 20918 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/acelp_vectors.h')
-rw-r--r-- | libavcodec/acelp_vectors.h | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/libavcodec/acelp_vectors.h b/libavcodec/acelp_vectors.h index 7bbc6b3ddf..3a72ef91e7 100644 --- a/libavcodec/acelp_vectors.h +++ b/libavcodec/acelp_vectors.h @@ -145,14 +145,13 @@ extern const float ff_pow_0_55[10]; * * Used in G.729 @8k, G.729 @4.4k, G.729 @6.4k, AMR @7.95k, AMR @7.40k */ -void ff_acelp_fc_pulse_per_track( - int16_t* fc_v, - const uint8_t *tab1, - const uint8_t *tab2, - int pulse_indexes, - int pulse_signs, - int pulse_count, - int bits); +void ff_acelp_fc_pulse_per_track(int16_t* fc_v, + const uint8_t *tab1, + const uint8_t *tab2, + int pulse_indexes, + int pulse_signs, + int pulse_count, + int bits); /** * Decode the algebraic codebook index to pulse positions and signs and @@ -187,15 +186,14 @@ void ff_decode_10_pulses_35bits(const int16_t *fixed_index, * * out[i] = (in_a[i]*weight_a + in_b[i]*weight_b + rounder) >> shift */ -void ff_acelp_weighted_vector_sum( - int16_t* out, - const int16_t *in_a, - const int16_t *in_b, - int16_t weight_coeff_a, - int16_t weight_coeff_b, - int16_t rounder, - int shift, - int length); +void ff_acelp_weighted_vector_sum(int16_t* out, + const int16_t *in_a, + const int16_t *in_b, + int16_t weight_coeff_a, + int16_t weight_coeff_b, + int16_t rounder, + int shift, + int length); /** * float implementation of weighted sum of two vectors. @@ -209,7 +207,8 @@ void ff_acelp_weighted_vector_sum( * @note It is safe to pass the same buffer for out and in_a or in_b. */ void ff_weighted_vector_sumf(float *out, const float *in_a, const float *in_b, - float weight_coeff_a, float weight_coeff_b, int length); + float weight_coeff_a, float weight_coeff_b, + int length); /** * Adaptative gain control (as used in AMR postfiltering) |