]> git.sesse.net Git - vlc/commitdiff
* modules/audio_filter/resampler/ugly.c: compilation fix.
authorGildas Bazin <gbazin@videolan.org>
Thu, 22 Sep 2005 20:56:57 +0000 (20:56 +0000)
committerGildas Bazin <gbazin@videolan.org>
Thu, 22 Sep 2005 20:56:57 +0000 (20:56 +0000)
modules/audio_filter/resampler/ugly.c

index cd565af49149b7e5ef2f31a45e4d8ad2810a3511..a2d46c0103b34119815a444977f75191ca53d662 100644 (file)
@@ -85,6 +85,9 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
 {
     int32_t *p_in, *p_out = (int32_t*)p_out_buf->p_buffer;
+#ifndef HAVE_ALLOCA
+    int32_t *p_in_orig;
+#endif
 
     unsigned int i_nb_channels = aout_FormatNbChannels( &p_filter->input );
     unsigned int i_in_nb = p_in_buf->i_nb_samples;