diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-12-02 14:06:28 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-12-02 14:06:28 +0000 |
commit | d0b53d05c8fbd285f9267ba9a871e3ab2952b114 (patch) | |
tree | ea2303b94cdb35c3d5cea6082f539e0c88f6119a /libavcodec/apedec.c | |
parent | 74971185f3dce3ac55d4f56b4a5c9c686f1a6d6e (diff) | |
download | ffmpeg-d0b53d05c8fbd285f9267ba9a871e3ab2952b114.tar.gz |
Fix some spelling mistakes.
Originally committed as revision 11125 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/apedec.c')
-rw-r--r-- | libavcodec/apedec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/apedec.c b/libavcodec/apedec.c index 8d06b9c5d2..29d4d3f6ac 100644 --- a/libavcodec/apedec.c +++ b/libavcodec/apedec.c @@ -514,7 +514,7 @@ static void init_predictor_decoder(APEContext * ctx) memset(p->historybuffer, 0, PREDICTOR_SIZE * sizeof(int32_t)); p->buf = p->historybuffer; - /* Initialize and zero the co-efficients */ + /* Initialize and zero the coefficients */ memcpy(p->coeffsA[0], initial_coeffs, sizeof(initial_coeffs)); memcpy(p->coeffsA[1], initial_coeffs, sizeof(initial_coeffs)); memset(p->coeffsB, 0, sizeof(p->coeffsB)); |