diff options
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 12 |
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); |