diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-07-02 12:26:22 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-07-02 12:26:22 +0000 |
commit | 8d84a909c3b158f49a928cf9b74b3fe20ee48b0d (patch) | |
tree | 086391a06b49c9cf1d1838fe17a6330281baa40a /libavcodec/lsp.h | |
parent | 89eec74a52e0f0495bd41bf519f915ccd170e6b0 (diff) | |
download | ffmpeg-8d84a909c3b158f49a928cf9b74b3fe20ee48b0d.tar.gz |
Fix the signature of ff_set_min_dist_lsf() to match the implementation
and add doxy for the size parameter.
Originally committed as revision 23986 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lsp.h')
-rw-r--r-- | libavcodec/lsp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/lsp.h b/libavcodec/lsp.h index 1da80e8487..51d3f529dd 100644 --- a/libavcodec/lsp.h +++ b/libavcodec/lsp.h @@ -48,8 +48,9 @@ void ff_acelp_reorder_lsf(int16_t* lsfq, int lsfq_min_distance, int lsfq_min, in * * @param lsf [in,out] LSFs in Hertz * @param min_spacing minimum distance between two consecutive lsf values + * @param size size of the lsf vector */ -void ff_set_min_dist_lsf(float *lsf, double min_spacing, int order); +void ff_set_min_dist_lsf(float *lsf, double min_spacing, int size); /** * \brief Convert LSF to LSP |