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.
This commit is contained in:
Max Kellermann
2008-08-26 08:27:06 +02:00
parent 1b845f94a0
commit 2e9169de9d
4 changed files with 10 additions and 7 deletions

View File

@@ -20,9 +20,12 @@
#define DECODER_INTERNAL_H
#include "decoder_api.h"
#include "pcm_utils.h"
struct decoder {
InputPlugin *plugin;
ConvState conv_state;
};
#endif