FFmpeg
|
Go to the source code of this file.
Functions | |
int64_t | ff_vorbiscomment_length (const AVDictionary *m, const char *vendor_string, AVChapter **chapters, unsigned int nb_chapters) |
Calculate the length in bytes of a VorbisComment. More... | |
int | ff_vorbiscomment_write (AVIOContext *pb, const AVDictionary *m, const char *vendor_string, AVChapter **chapters, unsigned int nb_chapters) |
Write a VorbisComment into an AVIOContext. More... | |
Variables | |
const AVMetadataConv | ff_vorbiscomment_metadata_conv [] |
VorbisComment metadata conversion mapping. More... | |
int64_t ff_vorbiscomment_length | ( | const AVDictionary * | m, |
const char * | vendor_string, | ||
AVChapter ** | chapters, | ||
unsigned int | nb_chapters | ||
) |
Calculate the length in bytes of a VorbisComment.
This is the minimum size required by ff_vorbiscomment_write().
m | The metadata structure to be parsed. For no metadata, set to NULL. |
vendor_string | The vendor string to be added into the VorbisComment. For no string, set to an empty string. |
Definition at line 41 of file vorbiscomment.c.
Referenced by flac_write_block_comment(), and ogg_write_vorbiscomment().
int ff_vorbiscomment_write | ( | AVIOContext * | pb, |
const AVDictionary * | m, | ||
const char * | vendor_string, | ||
AVChapter ** | chapters, | ||
unsigned int | nb_chapters | ||
) |
Write a VorbisComment into an AVIOContext.
The output size can be obtained in advance by passing the same chapters, AVDictionary and vendor_string to ff_vorbiscomment_length()
pb | The AVIOContext to write the output. |
m | The metadata struct to write. |
vendor_string | The vendor string to write. |
chapters | The chapters to write. |
nb_chapters | The number of chapters to write. |
Definition at line 65 of file vorbiscomment.c.
Referenced by flac_write_block_comment(), and ogg_write_vorbiscomment().
const AVMetadataConv ff_vorbiscomment_metadata_conv[] |
VorbisComment metadata conversion mapping.
from Ogg Vorbis I format specification: comment field and header specification http://xiph.org/vorbis/doc/v-comment.html
Definition at line 33 of file vorbiscomment.c.
Referenced by ff_vorbis_comment(), flac_write_block_comment(), and ogg_write_vorbiscomment().