![]() |
|
An implementation of TagLib::File with AIFF specific methods. More...
#include <aifffile.h>
Public Member Functions | |
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 | hasID3v2Tag () const |
![]() | |
FileName | name () const |
PropertyMap | properties () const |
void | removeUnsupportedProperties (const StringList &properties) |
PropertyMap | setProperties (const PropertyMap &properties) |
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 () |
Friends | |
class | Properties |
Additional Inherited Members | |
![]() | |
enum | Position { Beginning, Current, End } |
![]() | |
static bool | isReadable (const char *file) |
static bool | isWritable (const char *name) |
![]() | |
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.
TagLib::RIFF::AIFF::File::File | ( | FileName | file, |
bool | readProperties = true , |
||
Properties::ReadStyle | propertiesStyle = Properties::Average |
||
) |
Constructs an AIFF file from file. If readProperties is true the file's audio properties will also be read.
TagLib::RIFF::AIFF::File::File | ( | IOStream * | stream, |
bool | readProperties = true , |
||
Properties::ReadStyle | propertiesStyle = Properties::Average |
||
) |
|
virtual |
Destroys this instance of the File.
Reimplemented from TagLib::RIFF::File.
|
virtual |
Returns the AIFF::Properties for this file. If no audio properties were read then this will return a null pointer.
Implements TagLib::File.
bool TagLib::RIFF::AIFF::File::hasID3v2Tag | ( | ) | const |
Returns whether or not the file on disk actually has an ID3v2 tag.
PropertyMap TagLib::RIFF::AIFF::File::properties | ( | ) | const |
Implements the unified property interface – export function. This method forwards to ID3v2::Tag::properties().
void TagLib::RIFF::AIFF::File::removeUnsupportedProperties | ( | const StringList & | properties | ) |
|
virtual |
Saves the file.
Implements TagLib::File.
PropertyMap TagLib::RIFF::AIFF::File::setProperties | ( | const PropertyMap & | ) |
Implements the unified property interface – import function. This method forwards to ID3v2::Tag::setProperties().
|
virtual |
Returns the Tag for this file.
Implements TagLib::File.
|
friend |