[MPlayer-cvslog] r28844 - trunk/libaf/af_resample.c
reimar
subversion at mplayerhq.hu
Fri Mar 6 12:31:19 CET 2009
Author: reimar
Date: Fri Mar 6 12:31:18 2009
New Revision: 28844
Log:
Comment typo fixes for af_resample
Modified:
trunk/libaf/af_resample.c
Modified: trunk/libaf/af_resample.c
==============================================================================
--- trunk/libaf/af_resample.c Fri Mar 6 11:53:30 2009 (r28843)
+++ trunk/libaf/af_resample.c Fri Mar 6 12:31:18 2009 (r28844)
@@ -33,7 +33,7 @@
Valid definitions are L8 and L16, where the number denotes the
length of the filter. This definition affects the computational
complexity (see play()), the performance (see filter.h) and the
- memory usage. The filterlength is choosen to 8 if the machine is
+ memory usage. The filter length is chosen to 8 if the machine is
slow and to 16 if the machine is fast and has MMX.
*/
@@ -175,11 +175,11 @@ static int control(struct af_instance_s*
switch(cmd){
case AF_CONTROL_REINIT:{
af_resample_t* s = (af_resample_t*)af->setup;
- af_data_t* n = (af_data_t*)arg; // New configureation
+ af_data_t* n = (af_data_t*)arg; // New configuration
int i,d = 0;
int rv = AF_OK;
- // Free space for circular bufers
+ // Free space for circular buffers
if(s->xq){
for(i=1;i<af->data->nch;i++)
if(s->xq[i])
@@ -216,13 +216,13 @@ static int control(struct af_instance_s*
d*=m;
}
- // Create space for circular bufers
+ // Create space for circular buffers
s->xq = malloc(n->nch*sizeof(void*));
for(i=0;i<n->nch;i++)
s->xq[i] = malloc(2*L*af->data->bps);
s->xi = 0;
- // Check if the the design needs to be redone
+ // Check if the design needs to be redone
if(s->up != af->data->rate/d || s->dn != n->rate/d){
float* w;
float* wt;
@@ -233,9 +233,9 @@ static int control(struct af_instance_s*
s->wi = 0;
s->i = 0;
- // Calculate cuttof frequency for filter
+ // Calculate cutoff frequency for filter
fc = 1/(float)(max(s->up,s->dn));
- // Allocate space for polyphase filter bank and protptype filter
+ // Allocate space for polyphase filter bank and prototype filter
w = malloc(sizeof(float) * s->up *L);
if(NULL != s->w)
free(s->w);
More information about the MPlayer-cvslog
mailing list