add OggFLAC__OggDecoderAspect member
authorJosh Coalson <jcoalson@users.sourceforce.net>
Wed, 24 Sep 2003 04:34:06 +0000 (04:34 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Wed, 24 Sep 2003 04:34:06 +0000 (04:34 +0000)
src/libOggFLAC/include/protected/file_decoder.h
src/libOggFLAC/include/protected/seekable_stream_decoder.h
src/libOggFLAC/include/protected/stream_decoder.h

index 52fbc0e..9b5abc0 100644 (file)
 #define OggFLAC__PROTECTED__FILE_DECODER_H
 
 #include "OggFLAC/file_decoder.h"
+#include "private/ogg_decoder_aspect.h"
 
 typedef struct OggFLAC__FileDecoderProtected {
        OggFLAC__FileDecoderState state;
+       OggFLAC__OggDecoderAspect ogg_decoder_aspect;
 } OggFLAC__FileDecoderProtected;
 
 #endif
index 16c68d8..d6b4e1a 100644 (file)
 #define OggFLAC__PROTECTED__SEEKABLE_STREAM_DECODER_H
 
 #include "OggFLAC/seekable_stream_decoder.h"
+#include "private/ogg_decoder_aspect.h"
 
 typedef struct OggFLAC__SeekableStreamDecoderProtected {
        OggFLAC__SeekableStreamDecoderState state;
+       OggFLAC__OggDecoderAspect ogg_decoder_aspect;
 } OggFLAC__SeekableStreamDecoderProtected;
 
 #endif
index a142354..c711c01 100644 (file)
 #define OggFLAC__PROTECTED__STREAM_DECODER_H
 
 #include "OggFLAC/stream_decoder.h"
+#include "private/ogg_decoder_aspect.h"
 
 typedef struct OggFLAC__StreamDecoderProtected {
        OggFLAC__StreamDecoderState state;
-       FLAC__bool use_first_serial_number;
-       long serial_number;
+       OggFLAC__OggDecoderAspect ogg_decoder_aspect;
 } OggFLAC__StreamDecoderProtected;
 
 #endif