]> git.sesse.net Git - vlc/commitdiff
Use C-style comments
authorJean-Paul Saman <jpsaman@videolan.org>
Sun, 6 Aug 2006 13:11:49 +0000 (13:11 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Sun, 6 Aug 2006 13:11:49 +0000 (13:11 +0000)
modules/audio_filter/resampler/bandlimited.c

index d092f6b06402d943262837aff76bcbddb38ca97d..c357303064d85320026978efaff8c2e0edcec21f 100644 (file)
@@ -177,7 +177,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
     /* Check if we really need to run the resampler */
     if( p_aout->mixer.mixer.i_rate == p_filter->input.i_rate )
     {
-        if( //p_filter->b_continuity && /* What difference does it make ? :) */
+        if( /*p_filter->b_continuity && /--* What difference does it make ? :) */
             p_filter->p_sys->i_old_wing &&
             p_in_buf->i_size >=
               p_in_buf->i_nb_bytes + p_filter->p_sys->i_old_wing *
@@ -275,7 +275,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
         {
             /* Just copy the samples */
             memcpy( p_out, p_in, 
-                    p_filter->input.i_bytes_per_frame );          
+                    p_filter->input.i_bytes_per_frame );
             p_in += i_nb_channels;
             p_out += i_nb_channels;
             i_out++;