comparison apedec.c @ 5966:1275461ae6f8 libavcodec

Fix some spelling mistakes.
author diego
date Sun, 02 Dec 2007 14:06:28 +0000
parents 80103098c797
children c82299110182
comparison
equal deleted inserted replaced
5965:febfff2ccb8d 5966:1275461ae6f8
512 512
513 /* Zero the history buffers */ 513 /* Zero the history buffers */
514 memset(p->historybuffer, 0, PREDICTOR_SIZE * sizeof(int32_t)); 514 memset(p->historybuffer, 0, PREDICTOR_SIZE * sizeof(int32_t));
515 p->buf = p->historybuffer; 515 p->buf = p->historybuffer;
516 516
517 /* Initialize and zero the co-efficients */ 517 /* Initialize and zero the coefficients */
518 memcpy(p->coeffsA[0], initial_coeffs, sizeof(initial_coeffs)); 518 memcpy(p->coeffsA[0], initial_coeffs, sizeof(initial_coeffs));
519 memcpy(p->coeffsA[1], initial_coeffs, sizeof(initial_coeffs)); 519 memcpy(p->coeffsA[1], initial_coeffs, sizeof(initial_coeffs));
520 memset(p->coeffsB, 0, sizeof(p->coeffsB)); 520 memset(p->coeffsB, 0, sizeof(p->coeffsB));
521 521
522 p->filterA[0] = p->filterA[1] = 0; 522 p->filterA[0] = p->filterA[1] = 0;