diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-20 21:47:15 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-04-30 16:16:23 +0200 |
commit | e926b5ceb1962833f0c884a328382bc2eca67aff (patch) | |
tree | 2376b74aa6d0d7d2cd25363ebfc22c47afb0380f /libavformat/id3v2.c | |
parent | 7f75f2f2bd692857c1c1ca7f414eb30ece3de93d (diff) | |
download | ffmpeg-e926b5ceb1962833f0c884a328382bc2eca67aff.tar.gz |
avformat: Drop unnecessary ff_ name prefixes from static functions
Diffstat (limited to 'libavformat/id3v2.c')
-rw-r--r-- | libavformat/id3v2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 7bcea21a6b..9b97cd5363 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -527,7 +527,8 @@ static const ID3v2EMFunc *get_extra_meta_func(const char *tag, int isv34) return NULL; } -static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags, ID3v2ExtraMeta **extra_meta) +static void id3v2_parse(AVFormatContext *s, int len, uint8_t version, + uint8_t flags, ID3v2ExtraMeta **extra_meta) { int isv34, tlen, unsync; char tag[5]; @@ -687,7 +688,7 @@ void ff_id3v2_read(AVFormatContext *s, const char *magic, ID3v2ExtraMeta **extra ((buf[7] & 0x7f) << 14) | ((buf[8] & 0x7f) << 7) | (buf[9] & 0x7f); - ff_id3v2_parse(s, len, buf[3], buf[5], extra_meta); + id3v2_parse(s, len, buf[3], buf[5], extra_meta); } else { avio_seek(s->pb, off, SEEK_SET); } |