diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:06 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:06 +0200 |
commit | 2e9169de9d859fd5d5629a4d1b3789155a5dac62 (patch) | |
tree | 3c4db7795105ebbd9651fd946b047bf642fc2590 /src/decoder_internal.h | |
parent | 1b845f94a0a75bd6cc21ac666c9c0ab04362dd80 (diff) | |
download | mpd-2e9169de9d859fd5d5629a4d1b3789155a5dac62.tar.gz mpd-2e9169de9d859fd5d5629a4d1b3789155a5dac62.tar.xz mpd-2e9169de9d859fd5d5629a4d1b3789155a5dac62.zip |
moved convState to struct decoder
Since we moved all PCM conversions to decoder_data(), the attribute
convState isn't being used anymore by the OutputBuffer code. Move it
to struct decoder.
Diffstat (limited to 'src/decoder_internal.h')
-rw-r--r-- | src/decoder_internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/decoder_internal.h b/src/decoder_internal.h index 7f1095db9..2115990a8 100644 --- a/src/decoder_internal.h +++ b/src/decoder_internal.h @@ -20,9 +20,12 @@ #define DECODER_INTERNAL_H #include "decoder_api.h" +#include "pcm_utils.h" struct decoder { InputPlugin *plugin; + + ConvState conv_state; }; #endif |