|
| File (FileName file, bool readProperties=true, Properties::ReadStyle propertiesStyle=Properties::Average) |
|
| File (IOStream *stream, bool readProperties=true, Properties::ReadStyle propertiesStyle=Properties::Average) |
|
virtual | ~File () |
|
virtual ID3v2::Tag * | tag () const |
|
PropertyMap | properties () const |
|
void | removeUnsupportedProperties (const StringList &properties) |
|
PropertyMap | setProperties (const PropertyMap &) |
|
virtual Properties * | audioProperties () const |
|
virtual bool | save () |
|
bool | save (ID3v2::Version version) |
|
bool | hasID3v2Tag () const |
|
virtual | ~File () |
|
virtual | ~File () |
|
FileName | name () const |
|
virtual Tag * | tag () const =0 |
|
PropertyMap | properties () const |
|
void | removeUnsupportedProperties (const StringList &properties) |
|
PropertyMap | setProperties (const PropertyMap &properties) |
|
virtual AudioProperties * | audioProperties () const =0 |
|
virtual bool | save ()=0 |
|
ByteVector | readBlock (unsigned long length) |
|
void | writeBlock (const ByteVector &data) |
|
long | find (const ByteVector &pattern, long fromOffset=0, const ByteVector &before=ByteVector()) |
|
long | rfind (const ByteVector &pattern, long fromOffset=0, const ByteVector &before=ByteVector()) |
|
void | insert (const ByteVector &data, unsigned long start=0, unsigned long replace=0) |
|
void | removeBlock (unsigned long start=0, unsigned long length=0) |
|
bool | readOnly () const |
|
bool | isOpen () const |
|
bool | isValid () const |
|
void | seek (long offset, Position p=Beginning) |
|
void | clear () |
|
long | tell () const |
|
long | length () |
|
|
enum | Position { Beginning
, Current
, End
} |
|
enum | StripTags { StripNone
, StripOthers
} |
|
enum | DuplicateTags { Duplicate
, DoNotDuplicate
} |
|
enum | Endianness { BigEndian
, LittleEndian
} |
|
| File (FileName file, Endianness endianness) |
|
| File (IOStream *stream, Endianness endianness) |
|
unsigned int | riffSize () const |
|
unsigned int | chunkCount () const |
|
unsigned int | chunkOffset (unsigned int i) const |
|
unsigned int | chunkDataSize (unsigned int i) const |
|
unsigned int | chunkPadding (unsigned int i) const |
|
ByteVector | chunkName (unsigned int i) const |
|
ByteVector | chunkData (unsigned int i) |
|
void | setChunkData (unsigned int i, const ByteVector &data) |
|
void | setChunkData (const ByteVector &name, const ByteVector &data) |
|
void | setChunkData (const ByteVector &name, const ByteVector &data, bool alwaysCreate) |
|
void | removeChunk (unsigned int i) |
|
void | removeChunk (const ByteVector &name) |
|
| File (FileName file) |
|
| File (IOStream *stream) |
|
void | setValid (bool valid) |
|
void | truncate (long length) |
|
static unsigned int | bufferSize () |
|
An implementation of TagLib::File with AIFF specific methods.
This implements and provides an interface for AIFF files to the TagLib::Tag and TagLib::AudioProperties interfaces by way of implementing the abstract TagLib::File API as well as providing some additional information specific to AIFF files.