aboutsummaryrefslogtreecommitdiffstats
path: root/src/outputBuffer_config_init.h
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-08-27 02:56:19 -0700
committerEric Wong <normalperson@yhbt.net>2008-08-27 02:56:19 -0700
commit541a989803188f183f36fd33b1eef519fc46ee23 (patch)
treec55124c4c5739ff95e0be1f1355930cf6209473b /src/outputBuffer_config_init.h
parent9cb6d62a0302d8e49b2225b97602379db7566b5e (diff)
downloadmpd-541a989803188f183f36fd33b1eef519fc46ee23.tar.gz
mpd-541a989803188f183f36fd33b1eef519fc46ee23.tar.xz
mpd-541a989803188f183f36fd33b1eef519fc46ee23.zip
Fix software mixer
I just forgot to reenable/reinitialize it after the core rewrite.
Diffstat (limited to '')
-rw-r--r--src/outputBuffer_config_init.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/outputBuffer_config_init.h b/src/outputBuffer_config_init.h
index 7461c4d73..a56502f80 100644
--- a/src/outputBuffer_config_init.h
+++ b/src/outputBuffer_config_init.h
@@ -66,6 +66,7 @@ void config_output_buffer(void)
ob.chunks = xcalloc(ob.index->size, sizeof(struct ob_chunk));
ob.preseek_len = xmalloc(ob.index->size * sizeof(ob.chunks[0].len));
ob.state = OB_STATE_STOP;
+ ob.sw_vol = 1000;
}
static void ob_free(void)