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_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/acelp_filters.h')
-rw-r--r-- | libavcodec/acelp_filters.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/acelp_filters.h b/libavcodec/acelp_filters.h index 09b5da45be..0b1ccf4e71 100644 --- a/libavcodec/acelp_filters.h +++ b/libavcodec/acelp_filters.h @@ -38,7 +38,7 @@ extern const int16_t ff_acelp_interp_filter[61]; /** * Generic FIR interpolation routine. - * @param out [out] buffer for interpolated data + * @param[out] out buffer for interpolated data * @param in input data * @param filter_coeffs interpolation filter coefficients (0.15) * @param precision sub sample factor, that is the precision of the position @@ -65,8 +65,8 @@ void ff_acelp_interpolatef(float *out, const float *in, /** * high-pass filtering and upscaling (4.2.5 of G.729). - * @param out [out] output buffer for filtered speech data - * @param hpf_f [in/out] past filtered data from previous (2 items long) + * @param[out] out output buffer for filtered speech data + * @param[in,out] hpf_f past filtered data from previous (2 items long) * frames (-0x20000000 <= (14.13) < 0x20000000) * @param in speech data to process * @param length input data size |