aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2003-09-08 22:34:28 +0000
committerFabrice Bellard <fabrice@bellard.org>2003-09-08 22:34:28 +0000
commit6a58e1510d073e214db2fc2cbb9fe4c031a739e6 (patch)
tree60884ddb721b9b7903dffdd32775fd5d3a1dd82e /libavformat/avformat.h
parente224e36030296641bfcdaa90008b0d5b670665eb (diff)
downloadffmpeg-6a58e1510d073e214db2fc2cbb9fe4c031a739e6.tar.gz
ID3 parsing and generation in MP3 format
Originally committed as revision 2237 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 7a7f031e6c..b36a0b6f4b 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -7,8 +7,8 @@ extern "C" {
#define LIBAVFORMAT_VERSION_INT 0x000408
#define LIBAVFORMAT_VERSION "0.4.8"
-#define LIBAVFORMAT_BUILD 4606
-#define LIBAVFORMAT_BUILD_STR "4606"
+#define LIBAVFORMAT_BUILD 4607
+#define LIBAVFORMAT_BUILD_STR "4607"
#define LIBAVFORMAT_IDENT "FFmpeg" LIBAVFORMAT_VERSION "b" LIBAVFORMAT_BUILD_STR
@@ -215,6 +215,11 @@ typedef struct AVFormatContext {
char author[512];
char copyright[512];
char comment[512];
+ char album[512];
+ int year; /* ID3 year, 0 if none */
+ int track; /* track number, 0 if none */
+ char genre[32]; /* ID3 genre */
+
int flags; /* format specific flags */
/* private data for pts handling (do not modify directly) */
int pts_wrap_bits; /* number of bits in pts (used for wrapping control) */
@@ -366,6 +371,9 @@ int wav_init(void);
/* raw.c */
int raw_init(void);
+/* mp3.c */
+int mp3_init(void);
+
/* yuv4mpeg.c */
int yuv4mpeg_init(void);