diff avformat.h @ 234:b99548e3ab84 libavformat

ID3 parsing and generation in MP3 format
author bellard
date Mon, 08 Sep 2003 22:34:28 +0000
parents 9f4f4ca9f7b5
children 3d92f793fd67
line wrap: on
line diff
--- a/avformat.h	Mon Sep 08 22:32:30 2003 +0000
+++ b/avformat.h	Mon Sep 08 22:34:28 2003 +0000
@@ -7,8 +7,8 @@
 
 #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 @@
     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 @@
 /* raw.c */
 int raw_init(void);
 
+/* mp3.c */
+int mp3_init(void);
+
 /* yuv4mpeg.c */
 int yuv4mpeg_init(void);