1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

avcodec/flac: Remove pointless define

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2022-08-28 16:34:28 +02:00
parent 6699ed38f3
commit f118b2aa46

View File

@@ -55,24 +55,23 @@ enum {
FLAC_METADATA_TYPE_INVALID = 127 FLAC_METADATA_TYPE_INVALID = 127
}; };
#define FLACCOMMONINFO \
int samplerate; /**< sample rate */\
int channels; /**< number of channels */\
int bps; /**< bits-per-sample */\
/** /**
* Data needed from the Streaminfo header for use by the raw FLAC demuxer * Data needed from the Streaminfo header for use by the raw FLAC demuxer
* and/or the FLAC decoder. * and/or the FLAC decoder.
*/ */
typedef struct FLACStreaminfo { typedef struct FLACStreaminfo {
FLACCOMMONINFO int samplerate; /**< sample rate */
int channels; /**< number of channels */
int bps; /**< bits-per-sample */
int max_blocksize; /**< maximum block size, in samples */ int max_blocksize; /**< maximum block size, in samples */
int max_framesize; /**< maximum frame size, in bytes */ int max_framesize; /**< maximum frame size, in bytes */
int64_t samples; /**< total number of samples */ int64_t samples; /**< total number of samples */
} FLACStreaminfo; } FLACStreaminfo;
typedef struct FLACFrameInfo { typedef struct FLACFrameInfo {
FLACCOMMONINFO int samplerate; /**< sample rate */
int channels; /**< number of channels */
int bps; /**< bits-per-sample */
int blocksize; /**< block size of the frame */ int blocksize; /**< block size of the frame */
int ch_mode; /**< channel decorrelation mode */ int ch_mode; /**< channel decorrelation mode */
int64_t frame_or_sample_num; /**< frame number or sample number */ int64_t frame_or_sample_num; /**< frame number or sample number */