diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2007-12-01 22:21:04 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2007-12-01 22:21:04 +0000 |
commit | 52b541ad798c2388e92a1a876550ff381f9b2346 (patch) | |
tree | ed4fa9fbaf0558825c666dbc40eb78fbb981a546 /libavcodec/apedec.c | |
parent | 329851e03251b58b43c0b55c2852a69dcbb79459 (diff) | |
download | ffmpeg-52b541ad798c2388e92a1a876550ff381f9b2346.tar.gz |
spelling
Originally committed as revision 11122 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/apedec.c')
-rw-r--r-- | libavcodec/apedec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/apedec.c b/libavcodec/apedec.c index 68358e1868..8d06b9c5d2 100644 --- a/libavcodec/apedec.c +++ b/libavcodec/apedec.c @@ -490,7 +490,7 @@ static void init_entropy_decoder(APEContext * ctx) /* Keep a count of the blocks decoded in this frame */ ctx->blocksdecoded = 0; - /* Initialise the rice structs */ + /* Initialize the rice structs */ ctx->riceX.k = 10; ctx->riceX.ksum = (1 << ctx->riceX.k) * 16; ctx->riceY.k = 10; @@ -514,7 +514,7 @@ static void init_predictor_decoder(APEContext * ctx) memset(p->historybuffer, 0, PREDICTOR_SIZE * sizeof(int32_t)); p->buf = p->historybuffer; - /* Initialise and zero the co-efficients */ + /* Initialize and zero the co-efficients */ 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)); |