From 2e9169de9d859fd5d5629a4d1b3789155a5dac62 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 26 Aug 2008 08:27:06 +0200 Subject: 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. --- src/decoder_internal.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/decoder_internal.h') 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 -- cgit v1.2.3