aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_internal.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-26 08:27:06 +0200
committerMax Kellermann <max@duempel.org>2008-08-26 08:27:06 +0200
commit2e9169de9d859fd5d5629a4d1b3789155a5dac62 (patch)
tree3c4db7795105ebbd9651fd946b047bf642fc2590 /src/decoder_internal.h
parent1b845f94a0a75bd6cc21ac666c9c0ab04362dd80 (diff)
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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/decoder_internal.h b/src/decoder_internal.h
index 7f1095db..2115990a 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