diff src/audacious/main.c @ 4286:af324ff0a983

added passthrough mode. tested with ape and flac
author Eugene Zagidullin <e.asphyx@gmail.com>
date Sat, 16 Feb 2008 01:47:30 +0300
parents a41fb6bc632a
children c942eaef7bc6
line wrap: on
line diff
--- a/src/audacious/main.c	Fri Feb 15 15:34:46 2008 +0100
+++ b/src/audacious/main.c	Sat Feb 16 01:47:30 2008 +0300
@@ -248,6 +248,7 @@
     48000,          /* samplerate */
     SRC_SINC_BEST_QUALITY, /* default interpolation method */
 #endif
+    FALSE,          /* bypass dsp */
 };
 
 typedef struct bmp_cfg_boolent_t {
@@ -367,6 +368,7 @@
 #ifdef USE_SRC
     {"enable_src",                 &cfg.enable_src, TRUE},
 #endif
+    {"bypass_dsp",                 &cfg.bypass_dsp, TRUE},
 };
 
 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents);