Changeset 47e6dfa48ec84ff167d27d4cf304ef0cb9152e03

Show
Ignore:
Timestamp:
07/06/07 18:36:38 (1 year ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1181234198 +0000
git-parent:

[b012efbd12a930e50b5d136fc32a1a8a7a428eff]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1181234198 +0000
Message:

Use unsigned

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/audio_filter/param_eq.c

    re060a75 r47e6dfa  
    4040static void CalcPeakEQCoeffs( float, float, float, float, float * ); 
    4141static void CalcShelfEQCoeffs( float, float, float, int, float, float * ); 
    42 static void ProcessEQ( float *, float *, float *, int, int, float *, int ); 
     42static void ProcessEQ( float *, float *, float *, unsigned, unsigned, float *, unsigned ); 
    4343static void DoWork( aout_instance_t *, aout_filter_t *, 
    4444                    aout_buffer_t *, aout_buffer_t * ); 
     
    302302*/ 
    303303void ProcessEQ( float *src, float *dest, float *state,  
    304                 int channels, int samples, float *coeffs,  
    305                 int eqCount ) 
    306 { 
    307     int i, chn, eq; 
     304                unsigned channels, unsigned samples, float *coeffs,  
     305                unsigned eqCount ) 
     306{ 
     307    unsigned i, chn, eq; 
    308308    float   b0, b1, b2, a1, a2; 
    309309    float   x, y = 0;