diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-10-10 15:51:02 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-10-13 23:20:37 +0200 |
commit | c4a378855e7a37605af3f9120537ed9bbc5d3996 (patch) | |
tree | e2e52c690cf110b6fba4424af88425c06971a872 /libavformat/id3v2.h | |
parent | 3b78c180e44a0fe82c38dc8fb1af66d7fde20ab8 (diff) | |
download | ffmpeg-c4a378855e7a37605af3f9120537ed9bbc5d3996.tar.gz |
id3v2: reduce the scope of some non-globally-used symbols/structures
Diffstat (limited to 'libavformat/id3v2.h')
-rw-r--r-- | libavformat/id3v2.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libavformat/id3v2.h b/libavformat/id3v2.h index 13dec399d1..4fb738a764 100644 --- a/libavformat/id3v2.h +++ b/libavformat/id3v2.h @@ -59,13 +59,6 @@ typedef struct ID3v2ExtraMetaGEOB { uint8_t *data; } ID3v2ExtraMetaGEOB; -typedef struct ID3v2EMFunc { - const char *tag3; - const char *tag4; - void (*read)(AVFormatContext*, AVIOContext*, int, char*, ID3v2ExtraMeta **); - void (*free)(); -} ID3v2EMFunc; - /** * Detect ID3v2 Header. * @param buf must be ID3v2_HEADER_SIZE byte long @@ -99,11 +92,8 @@ void ff_id3v2_read_all(AVFormatContext *s, const char *magic, ID3v2ExtraMeta **e */ void ff_id3v2_free_extra_meta(ID3v2ExtraMeta **extra_meta); -extern const ID3v2EMFunc ff_id3v2_extra_meta_funcs[]; - extern const AVMetadataConv ff_id3v2_34_metadata_conv[]; extern const AVMetadataConv ff_id3v2_4_metadata_conv[]; -extern const AVMetadataConv ff_id3v2_2_metadata_conv[]; /** * A list of text information frames allowed in both ID3 v2.3 and v2.4 |