From ff717d877865c1452eff341a2a810fc20b6ac196 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Wed, 30 Dec 2009 20:26:10 +0200 Subject: [PATCH] liba52: kill config_Get --- modules/audio_filter/converter/a52tofloat32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/audio_filter/converter/a52tofloat32.c b/modules/audio_filter/converter/a52tofloat32.c index d2342d7a2a..5545ca2e2b 100644 --- a/modules/audio_filter/converter/a52tofloat32.c +++ b/modules/audio_filter/converter/a52tofloat32.c @@ -107,14 +107,14 @@ vlc_module_end () static int Open( vlc_object_t *p_this, filter_sys_t *p_sys, audio_format_t input, audio_format_t output ) { - p_sys->b_dynrng = config_GetInt( p_this, "a52-dynrng" ); + p_sys->b_dynrng = var_InheritInteger( p_this, "a52-dynrng" ); p_sys->b_dontwarn = 0; /* No upmixing: it's not necessary and some other filters may want to do * it themselves. */ if ( aout_FormatNbChannels( &output ) > aout_FormatNbChannels( &input ) ) { - if ( ! config_GetInt( p_this, "a52-upmix" ) ) + if ( ! var_InheritInteger( p_this, "a52-upmix" ) ) { return VLC_EGENERIC; } -- 2.39.2