opusfile
0.12-12-gb23e611
Stand-alone decoder library for .opus files.
|
Data Structures | |
struct | OpusHead |
Ogg Opus bitstream information. More... | |
struct | OpusTags |
The metadata from an Ogg Opus stream. More... | |
struct | OpusPictureTag |
The contents of a METADATA_BLOCK_PICTURE tag. More... | |
Macros | |
#define | OPUS_CHANNEL_COUNT_MAX (255) |
The maximum number of channels in an Ogg Opus stream. | |
Functions for manipulating header data | |
These functions manipulate the OpusHead and OpusTags structures, which describe the audio parameters and tag-value metadata, respectively. These can be used to query the headers returned by | |
OP_WARN_UNUSED_RESULT int | opus_head_parse (OpusHead *_head, const unsigned char *_data, size_t _len) OP_ARG_NONNULL(2) |
Parses the contents of the ID header packet of an Ogg Opus stream. More... | |
ogg_int64_t | opus_granule_sample (const OpusHead *_head, ogg_int64_t _gp) OP_ARG_NONNULL(1) |
Converts a granule position to a sample offset for a given Ogg Opus stream. More... | |
OP_WARN_UNUSED_RESULT int | opus_tags_parse (OpusTags *_tags, const unsigned char *_data, size_t _len) OP_ARG_NONNULL(2) |
Parses the contents of the 'comment' header packet of an Ogg Opus stream. More... | |
int | opus_tags_copy (OpusTags *_dst, const OpusTags *_src) OP_ARG_NONNULL(1) |
Performs a deep copy of an OpusTags structure. More... | |
void | opus_tags_init (OpusTags *_tags) OP_ARG_NONNULL(1) |
Initializes an OpusTags structure. More... | |
int | opus_tags_add (OpusTags *_tags, const char *_tag, const char *_value) OP_ARG_NONNULL(1) OP_ARG_NONNULL(2) OP_ARG_NONNULL(3) |
Add a (tag, value) pair to an initialized OpusTags structure. More... | |
int | opus_tags_add_comment (OpusTags *_tags, const char *_comment) OP_ARG_NONNULL(1) OP_ARG_NONNULL(2) |
Add a comment to an initialized OpusTags structure. More... | |
int | opus_tags_set_binary_suffix (OpusTags *_tags, const unsigned char *_data, int _len) OP_ARG_NONNULL(1) |
Replace the binary suffix data at the end of the packet (if any). More... | |
const char * | opus_tags_query (const OpusTags *_tags, const char *_tag, int _count) OP_ARG_NONNULL(1) OP_ARG_NONNULL(2) |
Look up a comment value by its tag. More... | |
int | opus_tags_query_count (const OpusTags *_tags, const char *_tag) OP_ARG_NONNULL(1) OP_ARG_NONNULL(2) |
Look up the number of instances of a tag. More... | |
const unsigned char * | opus_tags_get_binary_suffix (const OpusTags *_tags, int *_len) OP_ARG_NONNULL(1) OP_ARG_NONNULL(2) |
Retrieve the binary suffix data at the end of the packet (if any). More... | |
int | opus_tags_get_album_gain (const OpusTags *_tags, int *_gain_q8) OP_ARG_NONNULL(1) OP_ARG_NONNULL(2) |
Get the album gain from an R128_ALBUM_GAIN tag, if one was specified. More... | |
int | opus_tags_get_track_gain (const OpusTags *_tags, int *_gain_q8) OP_ARG_NONNULL(1) OP_ARG_NONNULL(2) |
Get the track gain from an R128_TRACK_GAIN tag, if one was specified. More... | |
void | opus_tags_clear (OpusTags *_tags) OP_ARG_NONNULL(1) |
Clears the OpusTags structure. More... | |
int | opus_tagcompare (const char *_tag_name, const char *_comment) |
Check if _comment is an instance of a _tag_name tag. More... | |
int | opus_tagncompare (const char *_tag_name, int _tag_len, const char *_comment) |
Check if _comment is an instance of a _tag_name tag. More... | |
OP_WARN_UNUSED_RESULT int | opus_picture_tag_parse (OpusPictureTag *_pic, const char *_tag) OP_ARG_NONNULL(1) OP_ARG_NONNULL(2) |
Parse a single METADATA_BLOCK_PICTURE tag. More... | |
void | opus_picture_tag_init (OpusPictureTag *_pic) OP_ARG_NONNULL(1) |
Initializes an OpusPictureTag structure. More... | |
void | opus_picture_tag_clear (OpusPictureTag *_pic) OP_ARG_NONNULL(1) |
Clears the OpusPictureTag structure. More... | |
Picture tag image formats | |
#define | OP_PIC_FORMAT_UNKNOWN (-1) |
The MIME type was not recognized, or the image data did not match the declared MIME type. | |
#define | OP_PIC_FORMAT_URL (0) |
The MIME type indicates the image data is really a URL. | |
#define | OP_PIC_FORMAT_JPEG (1) |
The image is a JPEG. | |
#define | OP_PIC_FORMAT_PNG (2) |
The image is a PNG. | |
#define | OP_PIC_FORMAT_GIF (3) |
The image is a GIF. | |
OP_WARN_UNUSED_RESULT int opus_head_parse | ( | OpusHead * | _head, |
const unsigned char * | _data, | ||
size_t | _len | ||
) |
Parses the contents of the ID header packet of an Ogg Opus stream.
[out] | _head | Returns the contents of the parsed packet. The contents of this structure are untouched on error. This may be NULL to merely test the header for validity. |
[in] | _data | The contents of the ID header packet. |
_len | The number of bytes of data in the ID header packet. |
OP_ENOTFORMAT | If the data does not start with the "OpusHead" string. |
OP_EVERSION | If the version field signaled a version this library does not know how to parse. |
OP_EIMPL | If the channel mapping family was 255, which general purpose players should not attempt to play. |
OP_EBADHEADER | If the contents of the packet otherwise violate the Ogg Opus specification:
|
ogg_int64_t opus_granule_sample | ( | const OpusHead * | _head, |
ogg_int64_t | _gp | ||
) |
Converts a granule position to a sample offset for a given Ogg Opus stream.
The sample offset is simply _gp-_head->pre_skip
. Granule position values smaller than OpusHead::pre_skip correspond to audio that should never be played, and thus have no associated sample offset. This function returns -1 for such values. This function also correctly handles extremely large granule positions, which may have wrapped around to a negative number when stored in a signed ogg_int64_t value.
_head | The OpusHead information from the ID header of the stream. |
_gp | The granule position to convert. |
OP_WARN_UNUSED_RESULT int opus_tags_parse | ( | OpusTags * | _tags, |
const unsigned char * | _data, | ||
size_t | _len | ||
) |
Parses the contents of the 'comment' header packet of an Ogg Opus stream.
[out] | _tags | An uninitialized OpusTags structure. This returns the contents of the parsed packet. The contents of this structure are untouched on error. This may be NULL to merely test the header for validity. |
[in] | _data | The contents of the 'comment' header packet. |
_len | The number of bytes of data in the 'info' header packet. |
0 | Success. |
OP_ENOTFORMAT | If the data does not start with the "OpusTags" string. |
OP_EBADHEADER | If the contents of the packet otherwise violate the Ogg Opus specification. |
OP_EFAULT | If there wasn't enough memory to store the tags. |
void opus_tags_init | ( | OpusTags * | _tags | ) |
int opus_tags_add | ( | OpusTags * | _tags, |
const char * | _tag, | ||
const char * | _value | ||
) |
Add a (tag, value) pair to an initialized OpusTags structure.
_tags | The OpusTags structure to add the (tag, value) pair to. |
_tag | A NUL-terminated, case-insensitive, ASCII string containing the tag to add (without an '=' character). |
_value | A NUL-terminated UTF-8 containing the corresponding value. |
OP_EFAULT | An internal memory allocation failed. |
int opus_tags_add_comment | ( | OpusTags * | _tags, |
const char * | _comment | ||
) |
Add a comment to an initialized OpusTags structure.
_tags | The OpusTags structure to add the comment to. |
_comment | A NUL-terminated UTF-8 string containing the comment in "TAG=value" form. |
OP_EFAULT | An internal memory allocation failed. |
int opus_tags_set_binary_suffix | ( | OpusTags * | _tags, |
const unsigned char * | _data, | ||
int | _len | ||
) |
Replace the binary suffix data at the end of the packet (if any).
_tags | An initialized OpusTags structure. |
_data | A buffer of binary data to append after the encoded user comments. The least significant bit of the first byte of this data must be set (to ensure the data is preserved by other editors). |
_len | The number of bytes of binary data to append. This may be zero to remove any existing binary suffix data. |
const char* opus_tags_query | ( | const OpusTags * | _tags, |
const char * | _tag, | ||
int | _count | ||
) |
Look up a comment value by its tag.
_tags | An initialized OpusTags structure. |
_tag | The tag to look up. |
_count | The instance of the tag. The same tag can appear multiple times, each with a distinct value, so an index is required to retrieve them all. The order in which these values appear is significant and should be preserved. Use opus_tags_query_count() to get the legal range for the _count parameter. |
NULL | If no matching tag is found. |
int opus_tags_query_count | ( | const OpusTags * | _tags, |
const char * | _tag | ||
) |
Look up the number of instances of a tag.
Call this first when querying for a specific tag and then iterate over the number of instances with separate calls to opus_tags_query() to retrieve all the values for that tag in order.
_tags | An initialized OpusTags structure. |
_tag | The tag to look up. |
const unsigned char* opus_tags_get_binary_suffix | ( | const OpusTags * | _tags, |
int * | _len | ||
) |
Retrieve the binary suffix data at the end of the packet (if any).
_tags | An initialized OpusTags structure. | |
[out] | _len | Returns the number of bytes of binary suffix data returned. |
NULL
if none was present. int opus_tags_get_album_gain | ( | const OpusTags * | _tags, |
int * | _gain_q8 | ||
) |
Get the album gain from an R128_ALBUM_GAIN tag, if one was specified.
This searches for the first R128_ALBUM_GAIN tag with a valid signed, 16-bit decimal integer value and returns the value. This routine is exposed merely for convenience for applications which wish to do something special with the album gain (i.e., display it). If you simply wish to apply the album gain instead of the header gain, you can use op_set_gain_offset() with an OP_ALBUM_GAIN type and no offset.
_tags | An initialized OpusTags structure. | |
[out] | _gain_q8 | The album gain, in 1/256ths of a dB. This will lie in the range [-32768,32767], and should be applied in addition to the header gain. On error, no value is returned, and the previous contents remain unchanged. |
OP_FALSE | There was no album gain available in the given tags. |
int opus_tags_get_track_gain | ( | const OpusTags * | _tags, |
int * | _gain_q8 | ||
) |
Get the track gain from an R128_TRACK_GAIN tag, if one was specified.
This searches for the first R128_TRACK_GAIN tag with a valid signed, 16-bit decimal integer value and returns the value. This routine is exposed merely for convenience for applications which wish to do something special with the track gain (i.e., display it). If you simply wish to apply the track gain instead of the header gain, you can use op_set_gain_offset() with an OP_TRACK_GAIN type and no offset.
_tags | An initialized OpusTags structure. | |
[out] | _gain_q8 | The track gain, in 1/256ths of a dB. This will lie in the range [-32768,32767], and should be applied in addition to the header gain. On error, no value is returned, and the previous contents remain unchanged. |
OP_FALSE | There was no track gain available in the given tags. |
void opus_tags_clear | ( | OpusTags * | _tags | ) |
int opus_tagcompare | ( | const char * | _tag_name, |
const char * | _comment | ||
) |
Check if _comment is an instance of a _tag_name tag.
_tag_name | A NUL-terminated, case-insensitive, ASCII string containing the name of the tag to check for (without the terminating '=' character). |
_comment | The comment string to check. |
int opus_tagncompare | ( | const char * | _tag_name, |
int | _tag_len, | ||
const char * | _comment | ||
) |
Check if _comment is an instance of a _tag_name tag.
This version is slightly more efficient than opus_tagcompare() if the length of the tag name is already known (e.g., because it is a constant).
_tag_name | A case-insensitive ASCII string containing the name of the tag to check for (without the terminating '=' character). |
_tag_len | The number of characters in the tag name. This must be non-negative. |
_comment | The comment string to check. |
OP_WARN_UNUSED_RESULT int opus_picture_tag_parse | ( | OpusPictureTag * | _pic, |
const char * | _tag | ||
) |
Parse a single METADATA_BLOCK_PICTURE tag.
This decodes the BASE64-encoded content of the tag and returns a structure with the MIME type, description, image parameters (if known), and the compressed image data. If the MIME type indicates the presence of an image format we recognize (JPEG, PNG, or GIF) and the actual image data contains the magic signature associated with that format, then the OpusPictureTag::format field will be set to the corresponding format. This is provided as a convenience to avoid requiring applications to parse the MIME type and/or do their own format detection for the commonly used formats. In this case, we also attempt to extract the image parameters directly from the image data (overriding any that were present in the tag, which the specification says applications are not meant to rely on). The application must still provide its own support for actually decoding the image data and, if applicable, retrieving that data from URLs.
[out] | _pic | Returns the parsed picture data. No sanitation is done on the type, MIME type, or description fields, so these might return invalid values. The contents of this structure are left unmodified on failure. |
_tag | The METADATA_BLOCK_PICTURE tag contents. The leading "METADATA_BLOCK_PICTURE=" portion is optional, to allow the function to be used on either directly on the values in OpusTags::user_comments or on the return value of opus_tags_query(). |
OP_ENOTFORMAT | The METADATA_BLOCK_PICTURE contents were not valid. |
OP_EFAULT | There was not enough memory to store the picture tag contents. |
void opus_picture_tag_init | ( | OpusPictureTag * | _pic | ) |
Initializes an OpusPictureTag structure.
This should be called on a freshly allocated OpusPictureTag structure before attempting to use it.
_pic | The OpusPictureTag structure to initialize. |
void opus_picture_tag_clear | ( | OpusPictureTag * | _pic | ) |
Clears the OpusPictureTag structure.
This should be called on an OpusPictureTag structure after it is no longer needed. It will free all memory used by the structure members.
_pic | The OpusPictureTag structure to clear. |