vorbisfile documentation

vorbisfile version 1.25 - 20000615

vorbis_comment

declared in "vorbis/codec.h"

The vorbis_comment structure defines an Ogg Vorbis comment.

Only the fields the program needs must be defined. If a field isn't defined by the application, it will either be blank (if it's a string value) or set to some reasonable default (usually 0).

typedef struct vorbis_comment{
  /* unlimited user comment fields. */
  char **user_comments;
  int    comments;
  char  *vendor;

} vorbis_comment;

Parameters

user_comments
Unlimited user comment array. Comments stored in normal C 0-terminated strings.
comments
Int signifying number of user comments in user_comments field.
vendor
Information about the creator of the file. Stored in a standard C 0-terminated string.



copyright © 2000 vorbis team

Ogg Vorbis
team@vorbis.org

vorbisfile documentation

vorbisfile version 1.25 - 20000615