![]() |
|
An implementation of Ogg::File with Speex specific methods. More...
#include <speexfile.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 Ogg::XiphComment * | tag () const |
PropertyMap | properties () const |
PropertyMap | setProperties (const PropertyMap &) |
virtual Properties * | audioProperties () const |
virtual bool | save () |
![]() | |
ByteVector | packet (uint i) |
void | setPacket (uint i, const ByteVector &p) |
const PageHeader * | firstPageHeader () |
const PageHeader * | lastPageHeader () |
![]() | |
FileName | name () const |
void | removeUnsupportedProperties (const StringList &properties) |
ByteVector | readBlock (ulong length) |
void | writeBlock (const ByteVector &data) |
long | find (const ByteVector &pattern, long fromOffset=0, const ByteVector &before=ByteVector::null) |
long | rfind (const ByteVector &pattern, long fromOffset=0, const ByteVector &before=ByteVector::null) |
void | insert (const ByteVector &data, ulong start=0, ulong replace=0) |
void | removeBlock (ulong start=0, ulong 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 () |
Additional Inherited Members | |
![]() | |
File (FileName file) | |
File (IOStream *stream) | |
![]() | |
void | setValid (bool valid) |
void | truncate (long length) |
An implementation of Ogg::File with Speex specific methods.
This is the central class in the Ogg Speex metadata processing collection of classes. It's built upon Ogg::File which handles processing of the Ogg logical bitstream and breaking it down into pages which are handled by the codec implementations, in this case Speex specifically.
TagLib::Ogg::Speex::File::File | ( | FileName | file, |
bool | readProperties = true , |
||
Properties::ReadStyle | propertiesStyle = Properties::Average |
||
) |
Constructs a Speex file from file. If readProperties is true the file's audio properties will also be read.
TagLib::Ogg::Speex::File::File | ( | IOStream * | stream, |
bool | readProperties = true , |
||
Properties::ReadStyle | propertiesStyle = Properties::Average |
||
) |
|
virtual |
Destroys this instance of the File.
Reimplemented from TagLib::Ogg::File.
|
virtual |
Returns the Speex::Properties for this file. If no audio properties were read then this will return a null pointer.
Implements TagLib::File.
PropertyMap TagLib::Ogg::Speex::File::properties | ( | ) | const |
Implements the unified property interface – export function. This forwards directly to XiphComment::properties().
Reimplemented from TagLib::File.
|
virtual |
Save the file and its associated tags. This should be reimplemented in the concrete subclasses. Returns true if the save succeeds.
Reimplemented from TagLib::Ogg::File.
PropertyMap TagLib::Ogg::Speex::File::setProperties | ( | const PropertyMap & | ) |
Implements the unified tag dictionary interface – import function. Like properties(), this is a forwarder to the file's XiphComment.
Reimplemented from TagLib::File.
|
virtual |
Returns the XiphComment for this file. XiphComment implements the tag interface, so this serves as the reimplementation of TagLib::File::tag().
Implements TagLib::File.