summaryrefslogtreecommitdiff
path: root/libavformat/id3v2.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-02-25 09:53:59 +0100
committerAnton Khirnov <anton@khirnov.net>2012-02-29 14:19:42 +0100
commit393fd0d89e6d0a1cf5bd39f309f6f10e0f1f8ac7 (patch)
tree4b710cf02947d76a14121f8e52472bdaebb95151 /libavformat/id3v2.h
parent079ea6ca5f8f108ec328d3c2c1792e676fc30b9c (diff)
id3v2: remove unused ff_id3v2_read().
Rename ff_id3v2_read_all to ff_id3v2_read().
Diffstat (limited to 'libavformat/id3v2.h')
-rw-r--r--libavformat/id3v2.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/libavformat/id3v2.h b/libavformat/id3v2.h
index c3f08f5875..5f3ec1b3ca 100644
--- a/libavformat/id3v2.h
+++ b/libavformat/id3v2.h
@@ -84,16 +84,11 @@ int ff_id3v2_match(const uint8_t *buf, const char *magic);
int ff_id3v2_tag_len(const uint8_t *buf);
/**
- * Read an ID3v2 tag (text tags only)
- */
-void ff_id3v2_read(AVFormatContext *s, const char *magic);
-
-/**
- * Read an ID3v2 tag, including supported extra metadata (currently only GEOB)
+ * Read an ID3v2 tag, including supported extra metadata
* @param extra_meta If not NULL, extra metadata is parsed into a list of
* ID3v2ExtraMeta structs and *extra_meta points to the head of the list
*/
-void ff_id3v2_read_all(AVFormatContext *s, const char *magic, ID3v2ExtraMeta **extra_meta);
+void ff_id3v2_read(AVFormatContext *s, const char *magic, ID3v2ExtraMeta **extra_meta);
/**
* Write an ID3v2 tag.