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/celp_filters.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/celp_filters.h')
-rw-r--r-- | libavcodec/celp_filters.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/celp_filters.h b/libavcodec/celp_filters.h index 7b64fc0306..145e3d3346 100644 --- a/libavcodec/celp_filters.h +++ b/libavcodec/celp_filters.h @@ -56,7 +56,7 @@ void ff_celp_circ_addf(float *out, const float *in, /** * LP synthesis filter. - * @param out [out] pointer to output buffer + * @param[out] out pointer to output buffer * @param filter_coeffs filter coefficients (-0x8000 <= (3.12) < 0x8000) * @param in input signal * @param buffer_length amount of data to process @@ -79,7 +79,7 @@ int ff_celp_lp_synthesis_filter(int16_t *out, const int16_t *filter_coeffs, /** * LP synthesis filter. - * @param out [out] pointer to output buffer + * @param[out] out pointer to output buffer * - the array out[-filter_length, -1] must * contain the previous result of this filter * @param filter_coeffs filter coefficients. @@ -99,7 +99,7 @@ void ff_celp_lp_synthesis_filterf(float *out, const float *filter_coeffs, /** * LP zero synthesis filter. - * @param out [out] pointer to output buffer + * @param[out] out pointer to output buffer * @param filter_coeffs filter coefficients. * @param in input signal * - the array in[-filter_length, -1] must |