Changeset 34f25d06307f39ca5385ac49193134207ae359e8

Show
Ignore:
Timestamp:
18/02/06 21:07:55 (3 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1140293275 +0000
git-parent:

[5f623197661549b67a0236749eb2089ab0b52a15]

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

Remove unused variable

Files:

Legend:

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

    rb4392af r34f25d0  
    138138{ 
    139139    filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys; 
    140     float *p_in_orig, *p_in, *p_out = (float *)p_out_buf->p_buffer; 
     140#ifndef HAVE_ALLOCA 
     141    float *p_in_orig; 
     142#endif 
     143    float *p_in, *p_out = (float *)p_out_buf->p_buffer; 
    141144    float *p_prev_sample = (float *)p_sys->p_prev_sample; 
    142145