diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-05-04 21:18:13 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-07-25 19:43:32 +0200 |
commit | 03039f4c8cdb4f8e5dc69905f3d73e2a531157e8 (patch) | |
tree | 3ade6239dadc080b6d9c0d2dfb234fcf14ea48cc /libavcodec/twinvq.c | |
parent | 93a51984a27f3ba84d4e6f13d0c704ee9891603e (diff) | |
download | ffmpeg-03039f4c8cdb4f8e5dc69905f3d73e2a531157e8.tar.gz |
miscellaneous typo fixes
Diffstat (limited to 'libavcodec/twinvq.c')
-rw-r--r-- | libavcodec/twinvq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/twinvq.c b/libavcodec/twinvq.c index 887a88cf38..8c304c6afe 100644 --- a/libavcodec/twinvq.c +++ b/libavcodec/twinvq.c @@ -230,7 +230,7 @@ static void memset_float(float *buf, float val, int size) * Evaluate a single LPC amplitude spectrum envelope coefficient from the line * spectrum pairs. * - * @param lsp a vector of the cosinus of the LSP values + * @param lsp a vector of the cosine of the LSP values * @param cos_val cos(PI*i/N) where i is the index of the LPC amplitude * @param order the order of the LSP (and the size of the *lsp buffer). Must * be a multiple of four. @@ -302,9 +302,9 @@ static inline float get_cos(int idx, int part, const float *cos_tab, int size) * unexplained condition. * * @param step the size of a block "siiiibiiii" - * @param in the cosinus of the LSP data - * @param part is 0 for 0...PI (positive cossinus values) and 1 for PI...2PI - * (negative cossinus values) + * @param in the cosine of the LSP data + * @param part is 0 for 0...PI (positive cosine values) and 1 for PI...2PI + * (negative cosine values) * @param size the size of the whole output */ static inline void eval_lpcenv_or_interp(TwinContext *tctx, |