aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm_convert.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-03-02 16:37:05 +0100
committerMax Kellermann <max@duempel.org>2009-03-02 16:37:05 +0100
commit78e08f655ac88bda3225cb41d85f0b1c38770be4 (patch)
tree519add596cac85026642128354acfc695e685962 /src/pcm_convert.h
parentd9c143429822e00da3aa8139f7cbd02807d7a645 (diff)
downloadmpd-78e08f655ac88bda3225cb41d85f0b1c38770be4.tar.gz
mpd-78e08f655ac88bda3225cb41d85f0b1c38770be4.tar.xz
mpd-78e08f655ac88bda3225cb41d85f0b1c38770be4.zip
pcm_dither: renamed struct pcm_dither_24 to struct pcm_dither
There is nothing 24 bit specific in the pcm_dither_24 struct. Since we want to reuse the struct for 32 bit dithering, let's drop the "_24" suffix from the struct name.
Diffstat (limited to '')
-rw-r--r--src/pcm_convert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm_convert.h b/src/pcm_convert.h
index 35bbdad5c..b22731e08 100644
--- a/src/pcm_convert.h
+++ b/src/pcm_convert.h
@@ -33,7 +33,7 @@ struct audio_format;
struct pcm_convert_state {
struct pcm_resample_state resample;
- struct pcm_dither_24 dither;
+ struct pcm_dither dither;
/** the buffer for converting the sample format */
struct pcm_buffer format_buffer;