aboutsummaryrefslogtreecommitdiffstats
path: root/src/audio.h
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/audio.h
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/audio.h')
-rw-r--r--src/audio.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/audio.h b/src/audio.h
index 0cc879b28..518db0588 100644
--- a/src/audio.h
+++ b/src/audio.h
@@ -34,7 +34,8 @@ typedef struct _AudioFormat {
volatile mpd_sint8 channels;
volatile mpd_uint32 sampleRate;
volatile mpd_sint8 bits;
- volatile mpd_sint8 floatSamples;
+ volatile mpd_sint8 fracBits;
+ /*volatile mpd_sint8 floatSamples;*/
} AudioFormat;
void copyAudioFormat(AudioFormat * dest, AudioFormat * src);