[vlc-commits] soxr: Fix variable shadowing
Hugo Beauzée-Luyssen
git at videolan.org
Tue May 5 16:02:39 CEST 2020
vlc/vlc-3.0 | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Tue Jul 31 14:10:32 2018 +0200| [8b4b78d385ce747e9baecc286241018c8e723bcb] | committer: Thomas Guillem
soxr: Fix variable shadowing
(cherry picked from commit 35dc84cca41bbba42363569fea65757824310e5e)
Signed-off-by: Thomas Guillem <thomas at gllm.fr>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=8b4b78d385ce747e9baecc286241018c8e723bcb
---
modules/audio_filter/resampler/soxr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/audio_filter/resampler/soxr.c b/modules/audio_filter/resampler/soxr.c
index 87538fbf43..a0a1078f22 100644
--- a/modules/audio_filter/resampler/soxr.c
+++ b/modules/audio_filter/resampler/soxr.c
@@ -167,7 +167,7 @@ Open( vlc_object_t *p_obj, bool b_change_ratio )
* up a delay). */
if( b_change_ratio )
{
- soxr_quality_spec_t q_spec = soxr_quality_spec( SOXR_LQ, SOXR_VR );
+ q_spec = soxr_quality_spec( SOXR_LQ, SOXR_VR );
p_sys->vr_soxr = soxr_create( 1, f_ratio, i_channels,
&error, &io_spec, &q_spec, NULL );
if( error )
More information about the vlc-commits
mailing list