aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutput.c
diff options
context:
space:
mode:
authorAndreas Claesson <andreas.claesson@gmail.com>2005-05-24 15:06:23 +0000
committerAndreas Claesson <andreas.claesson@gmail.com>2005-05-24 15:06:23 +0000
commit29cc42bf9781f2407cc7ccfe801329b07434e50b (patch)
tree7a7b61381e788880c03b99325cb7448d5b7f88cd /src/audioOutput.c
parent422410c46de81cec8872a9b91d07a7c9eca96b82 (diff)
downloadmpd-29cc42bf9781f2407cc7ccfe801329b07434e50b.tar.gz
mpd-29cc42bf9781f2407cc7ccfe801329b07434e50b.tar.xz
mpd-29cc42bf9781f2407cc7ccfe801329b07434e50b.zip
Adding modifications for internal 1-3-28 bits integer samples. Only mp3 and mpc of the input plugins are modified. Resampling is NOT working!!
git-svn-id: https://svn.musicpd.org/mpd/branches/ancl@3281 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audioOutput.c')
-rw-r--r--src/audioOutput.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audioOutput.c b/src/audioOutput.c
index dcb264e45..fe4dd0ce9 100644
--- a/src/audioOutput.c
+++ b/src/audioOutput.c
@@ -164,7 +164,7 @@ int openAudioOutput(AudioOutput * audioOutput, AudioFormat * audioFormat) {
&audioOutput->inAudioFormat);
/* default to 16 bit integer samples */
audioOutput->outAudioFormat.bits = 16;
- audioOutput->outAudioFormat.floatSamples = 0;
+ audioOutput->outAudioFormat.fracBits = 0;
}
ret = audioOutput->openDeviceFunc(audioOutput);