diff options
author | Anton Khirnov | 2012-02-25 09:53:59 +0100 |
---|---|---|
committer | Anton Khirnov | 2012-02-29 14:19:42 +0100 |
commit | 393fd0d89e6d0a1cf5bd39f309f6f10e0f1f8ac7 (patch) | |
tree | 4b710cf02947d76a14121f8e52472bdaebb95151 /libavformat/omadec.c | |
parent | 079ea6ca5f8f108ec328d3c2c1792e676fc30b9c (diff) |
id3v2: remove unused ff_id3v2_read().
Rename ff_id3v2_read_all to ff_id3v2_read().
Diffstat (limited to 'libavformat/omadec.c')
-rw-r--r-- | libavformat/omadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/omadec.c b/libavformat/omadec.c index 7c54ffbc97..810e970c11 100644 --- a/libavformat/omadec.c +++ b/libavformat/omadec.c @@ -267,7 +267,7 @@ static int oma_read_header(AVFormatContext *s) ID3v2ExtraMeta *extra_meta = NULL; OMAContext *oc = s->priv_data; - ff_id3v2_read_all(s, ID3v2_EA3_MAGIC, &extra_meta); + ff_id3v2_read(s, ID3v2_EA3_MAGIC, &extra_meta); ret = avio_read(s->pb, buf, EA3_HEADER_SIZE); if (ret < EA3_HEADER_SIZE) return -1; |