diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-07-17 10:43:42 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-07-17 10:43:42 +0000 |
commit | 0c733da8e2dc411afbc1e74f88890dcf15533553 (patch) | |
tree | 127324520317998bcc2a10c0472df5ca57fe7cf2 /libavcodec/acelp_vectors.h | |
parent | 23ccf3c7a7621175156b4f8f89d321f081adbe59 (diff) | |
download | ffmpeg-0c733da8e2dc411afbc1e74f88890dcf15533553.tar.gz |
Fix Doxygen @param command attribute syntax.
The [in] and [out] attributes have to be appended to the @param command.
Originally committed as revision 24283 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/acelp_vectors.h')
-rw-r--r-- | libavcodec/acelp_vectors.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/acelp_vectors.h b/libavcodec/acelp_vectors.h index 9e3e7a8db3..f3bc781446 100644 --- a/libavcodec/acelp_vectors.h +++ b/libavcodec/acelp_vectors.h @@ -134,7 +134,7 @@ extern const float ff_pow_0_55[10]; /** * Decode fixed-codebook vector (3.8 and D.5.8 of G.729, 5.7.1 of AMR). - * @param fc_v [out] decoded fixed codebook vector (2.13) + * @param[out] fc_v decoded fixed codebook vector (2.13) * @param tab1 table used for first pulse_count pulses * @param tab2 table used for last pulse * @param pulse_indexes fixed codebook indexes @@ -174,7 +174,7 @@ void ff_decode_10_pulses_35bits(const int16_t *fixed_index, /** * weighted sum of two vectors with rounding. - * @param out [out] result of addition + * @param[out] out result of addition * @param in_a first vector * @param in_b second vector * @param weight_coeff_a first vector weight coefficient @@ -198,7 +198,7 @@ void ff_acelp_weighted_vector_sum(int16_t* out, /** * float implementation of weighted sum of two vectors. - * @param out [out] result of addition + * @param[out] out result of addition * @param in_a first vector * @param in_b second vector * @param weight_coeff_a first vector weight coefficient |