#include "MpegCodec.hxx"
#include "AudioCodec.hxx"
#include "DataTypes.hxx"
#include "AudioFileFormats.hxx"
#include "AudioFile.hxx"
#include "AudioFileHeader.hxx"
#include "MpegBitstream.hxx"
#include "MpegAudioStream.hxx"
#include <mad.h>
#include <id3/tag.h>
#include <cstdio>
#include <iostream>
#include <sys/types.h>
#include <sys/stat.h>
Go to the source code of this file.
Namespaces | |
namespace | CLAM |
namespace | CLAM::AudioCodecs |
This namespace includes classes to support different audio file formats. | |
Defines | |
#define | XING_MAGIC (('X' << 24) | ('i' << 16) | ('n' << 8) | 'g') |
Enumerations | |
enum | { CLAM::AudioCodecs::XING_FRAMES = 0x0001, CLAM::AudioCodecs::XING_BYTES = 0x0002, CLAM::AudioCodecs::XING_TOC = 0x0004, CLAM::AudioCodecs::XING_SCALE = 0x0008 } |
Functions | |
static int | CLAM::AudioCodecs::parse_xing (struct xing *xing, struct mad_bitptr ptr, unsigned int bitlen) |
static const char * | CLAM::AudioCodecs::getField (ID3_Tag &tag, const ID3_FrameID &field) |
#define XING_MAGIC (('X' << 24) | ('i' << 16) | ('n' << 8) | 'g') |
Definition at line 53 of file MpegCodec.cxx.