diff resample.c @ 2109:84637c6ca74e libavcodec

various resampling fixes
author michael
date Wed, 30 Jun 2004 14:15:31 +0000
parents db6a5e3e74a0
children 072fc321fbe6
line wrap: on
line diff
--- a/resample.c	Wed Jun 30 14:10:17 2004 +0000
+++ b/resample.c	Wed Jun 30 14:15:31 2004 +0000
@@ -175,7 +175,7 @@
     short *buftmp2[2], *buftmp3[2];
     int lenout;
 
-    if (s->input_channels == s->output_channels && s->ratio == 1.0) {
+    if (s->input_channels == s->output_channels && s->ratio == 1.0 && 0) {
         /* nothing to do */
         memcpy(output, input, nb_samples * s->input_channels * sizeof(short));
         return nb_samples;