diff options
author | Juanjo <pulento@users.sourceforge.net> | 2002-05-12 21:38:54 +0000 |
---|---|---|
committer | Juanjo <pulento@users.sourceforge.net> | 2002-05-12 21:38:54 +0000 |
commit | 92b3e1259207152d71fa852241988d7e9059a8eb (patch) | |
tree | e50d1b7de7997ab51d5f48378630b52b083a45fb /libav/avformat.h | |
parent | 79b0d5f925a3dfc23772721926f3dd252643ac9b (diff) | |
download | ffmpeg-92b3e1259207152d71fa852241988d7e9059a8eb.tar.gz |
- VCD MPEG-1 compliant stream support (set AVF_FLAG_VCD)
Originally committed as revision 491 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/avformat.h')
-rw-r--r-- | libav/avformat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libav/avformat.h b/libav/avformat.h index 10de1f8c2c..3b20a2d335 100644 --- a/libav/avformat.h +++ b/libav/avformat.h @@ -1,7 +1,7 @@ #define LIBAV_VERSION_INT 0x000406 #define LIBAV_VERSION "0.4.6" -#define LIBAV_BUILD 4600 +#define LIBAV_BUILD 4601 #include "avcodec.h" @@ -94,6 +94,7 @@ typedef struct AVFormatContext { char author[512]; char copyright[512]; char comment[512]; + int flags; /* format specific flags */ /* This buffer is only needed when packets were already buffered but not decoded, for example to get the codec parameters in mpeg streams */ @@ -111,6 +112,7 @@ extern AVFormat *first_format; extern AVFormat rm_format; /* mpegmux.c */ +#define AVF_FLAG_VCD 0x00000001 /* VCD compatible MPEG-PS */ extern AVFormat mpeg_mux_format; /* asfenc.c */ |