]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/id3v2.h
vorbiscomment: convert metadata before computing the header's length
[ffmpeg] / libavformat / id3v2.h
index ed6e450318701b2758fe9aa523a7997462a8755b..48373bb3f90e5cc2a1703108751406dbf33c60b8 100644 (file)
 
 /**
  * Detect ID3v2 Header.
- * @buf   must be ID3v2_HEADER_SIZE byte long
- * @magic magic bytes to identify the header, machine byte order.
+ * @param buf   must be ID3v2_HEADER_SIZE byte long
+ * @param magic magic bytes to identify the header, machine byte order.
  * If in doubt, use ID3v2_DEFAULT_MAGIC.
  */
 int ff_id3v2_match(const uint8_t *buf, const char *magic);
 
 /**
  * Get the length of an ID3v2 tag.
- * @buf must be ID3v2_HEADER_SIZE bytes long and point to the start of an
+ * @param buf must be ID3v2_HEADER_SIZE bytes long and point to the start of an
  * already detected ID3v2 tag
  */
 int ff_id3v2_tag_len(const uint8_t *buf);