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/wmaprodec.c | |
parent | 93a51984a27f3ba84d4e6f13d0c704ee9891603e (diff) | |
download | ffmpeg-03039f4c8cdb4f8e5dc69905f3d73e2a531157e8.tar.gz |
miscellaneous typo fixes
Diffstat (limited to 'libavcodec/wmaprodec.c')
-rw-r--r-- | libavcodec/wmaprodec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wmaprodec.c b/libavcodec/wmaprodec.c index d3bd3816fa..bbf3216076 100644 --- a/libavcodec/wmaprodec.c +++ b/libavcodec/wmaprodec.c @@ -125,7 +125,7 @@ static VLC vec4_vlc; ///< 4 coefficients per symbol static VLC vec2_vlc; ///< 2 coefficients per symbol static VLC vec1_vlc; ///< 1 coefficient per symbol static VLC coef_vlc[2]; ///< coefficient run length vlc codes -static float sin64[33]; ///< sinus table for decorrelation +static float sin64[33]; ///< sine table for decorrelation /** * @brief frame specific decoder context for a single channel @@ -449,7 +449,7 @@ static av_cold int decode_init(AVCodecContext *avctx) 1.0 / (1 << (WMAPRO_BLOCK_MIN_BITS + i - 1)) / (1 << (s->bits_per_sample - 1))); - /** init MDCT windows: simple sinus window */ + /** init MDCT windows: simple sine window */ for (i = 0; i < WMAPRO_BLOCK_SIZES; i++) { const int win_idx = WMAPRO_BLOCK_MAX_BITS - i; ff_init_ff_sine_windows(win_idx); |