diff options
author | Patrick Dehne <patrick@mysonicweb.com> | 2009-06-19 14:03:35 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-06-19 14:03:35 +0000 |
commit | 50fcd5be36d04a7674f5eef267ef71117efa3796 (patch) | |
tree | f16c5eb8a4f77edbb2036d35c160b30dd69d9aa0 /libavformat/id3v1.h | |
parent | 2a04d6e7726d5397913544180196c8c06784aea6 (diff) | |
download | ffmpeg-50fcd5be36d04a7674f5eef267ef71117efa3796.tar.gz |
Move id3v1/id3v2 handling code from mp3.c to id3v[12].c.
patch by Patrick Dehne, patrick mysonicweb com
Originally committed as revision 19224 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/id3v1.h')
-rw-r--r-- | libavformat/id3v1.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/id3v1.h b/libavformat/id3v1.h index 02333a1601..b5dcedc551 100644 --- a/libavformat/id3v1.h +++ b/libavformat/id3v1.h @@ -22,6 +22,8 @@ #ifndef AVFORMAT_ID3V1_H #define AVFORMAT_ID3V1_H +#include "avformat.h" + #define ID3v1_TAG_SIZE 128 #define ID3v1_GENRE_MAX 125 @@ -31,5 +33,10 @@ */ extern const char *ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1]; +/** + * Read an ID3v1 tag + */ +void ff_id3v1_read(AVFormatContext *s); + #endif /* AVFORMAT_ID3V1_H */ |