A RIFF file class with some useful methods specific to RIFF. More...
#include <rifffile.h>
Public Member Functions | |
~File () override | |
File (const File &)=delete | |
File & | operator= (const File &)=delete |
Public Member Functions inherited from TagLib::File | |
virtual | ~File () |
File (const File &)=delete | |
File & | operator= (const File &)=delete |
FileName | name () const |
virtual Tag * | tag () const =0 |
virtual PropertyMap | properties () const |
virtual void | removeUnsupportedProperties (const StringList &properties) |
virtual PropertyMap | setProperties (const PropertyMap &properties) |
virtual StringList | complexPropertyKeys () const |
virtual List< VariantMap > | complexProperties (const String &key) const |
virtual bool | setComplexProperties (const String &key, const List< VariantMap > &value) |
virtual AudioProperties * | audioProperties () const =0 |
virtual bool | save ()=0 |
ByteVector | readBlock (size_t length) |
void | writeBlock (const ByteVector &data) |
offset_t | find (const ByteVector &pattern, offset_t fromOffset=0, const ByteVector &before=ByteVector()) |
offset_t | rfind (const ByteVector &pattern, offset_t fromOffset=0, const ByteVector &before=ByteVector()) |
void | insert (const ByteVector &data, offset_t start=0, size_t replace=0) |
void | removeBlock (offset_t start=0, size_t length=0) |
bool | readOnly () const |
bool | isOpen () const |
bool | isValid () const |
void | seek (offset_t offset, Position p=Beginning) |
void | clear () |
offset_t | tell () const |
offset_t | length () |
Protected Types | |
enum | Endianness { BigEndian , LittleEndian } |
Protected Member Functions | |
File (FileName file, Endianness endianness) | |
File (IOStream *stream, Endianness endianness) | |
unsigned int | riffSize () const |
unsigned int | chunkCount () const |
offset_t | 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) |
Protected Member Functions inherited from TagLib::File | |
File (FileName fileName) | |
File (IOStream *stream) | |
void | setValid (bool valid) |
void | truncate (offset_t length) |
Additional Inherited Members | |
Public Types inherited from TagLib::File | |
enum | Position { Beginning , Current , End } |
enum | StripTags { StripNone , StripOthers } |
enum | DuplicateTags { Duplicate , DoNotDuplicate } |
Static Protected Member Functions inherited from TagLib::File | |
static unsigned int | bufferSize () |
A RIFF file class with some useful methods specific to RIFF.
This implements the generic TagLib::File API and additionally provides access to properties that are distinct to RIFF files, notably access to the different ID3 tags.
|
protected |
|
overridevirtual |
Destroys this instance of the File.
Reimplemented from TagLib::File.
Reimplemented in TagLib::RIFF::WAV::File.
|
delete |
|
protected |
|
protected |
|
protected |
|
protected |
Reads the chunk data from the file and returns it.
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
Removes the chunk name.
|
protected |
Removes the specified chunk.
|
protected |
|
protected |
Sets the data for the chunk name to data. If a chunk with the given name already exists it will be overwritten, otherwise it will be created after the existing chunks.
|
protected |
Sets the data for the chunk name to data. If a chunk with the given name already exists it will be overwritten, otherwise it will be created after the existing chunks.
true
, a new chunk is created regardless of whether or not the chunk name exists. It should only be used for "LIST" chunks.
|
protected |
Sets the data for the specified chunk to data.