make "#if FLAC__HAS_OGG" checking consistent

This commit is contained in:
Josh Coalson
2006-11-16 07:20:09 +00:00
parent 80011e40ab
commit f1ac7d9bde
10 changed files with 52 additions and 52 deletions

View File

@@ -33,7 +33,7 @@
#define FLAC__PROTECTED__STREAM_ENCODER_H
#include "FLAC/stream_encoder.h"
#ifdef FLAC__HAS_OGG
#if FLAC__HAS_OGG
#include "private/ogg_encoder_aspect.h"
#endif
@@ -101,7 +101,7 @@ typedef struct FLAC__StreamEncoderProtected {
FLAC__StreamMetadata **metadata;
unsigned num_metadata_blocks;
FLAC__uint64 streaminfo_offset, seektable_offset, audio_offset;
#ifdef FLAC__HAS_OGG
#if FLAC__HAS_OGG
FLAC__OggEncoderAspect ogg_encoder_aspect;
#endif
} FLAC__StreamEncoderProtected;