From 4b141479da70665db8d5780c9ca9e430c9dd1f09 Mon Sep 17 00:00:00 2001 From: diego Date: Wed, 30 Jul 2008 12:01:30 +0000 Subject: Start unifying names of internal preprocessor directives. Replace all USE_ prefixes by CONFIG_ prefixes to indicate options which are configurable. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27373 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libaf/af.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libaf/af.c') diff --git a/libaf/af.c b/libaf/af.c index 1fcda9b004..de84807875 100644 --- a/libaf/af.c +++ b/libaf/af.c @@ -52,10 +52,10 @@ static af_info_t* filter_list[]={ #endif &af_info_volnorm, &af_info_extrastereo, -#ifdef USE_LIBAVCODEC_A +#ifdef CONFIG_LIBAVCODEC_A &af_info_lavcac3enc, #endif -#ifdef USE_LIBAVCODEC +#ifdef CONFIG_LIBAVCODEC &af_info_lavcresample, #endif &af_info_sweep, @@ -399,7 +399,7 @@ int af_init(af_stream_t* s) &(s->output.rate)); if (!af) { char *resampler = "resample"; -#ifdef USE_LIBAVCODEC +#ifdef CONFIG_LIBAVCODEC if ((AF_INIT_TYPE_MASK & s->cfg.force) == AF_INIT_SLOW) resampler = "lavcresample"; #endif @@ -423,7 +423,7 @@ int af_init(af_stream_t* s) if ((AF_INIT_TYPE_MASK & s->cfg.force) == AF_INIT_FAST) { char args[32]; sprintf(args, "%d", s->output.rate); -#ifdef USE_LIBAVCODEC +#ifdef CONFIG_LIBAVCODEC if (strcmp(resampler, "lavcresample") == 0) strcat(args, ":1"); else -- cgit v1.2.3