summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2007-02-03 06:39:50 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2007-02-03 06:39:50 +0000
commit35bffd7f3d82b6c1d28afc789189a6cff6f6e067 (patch)
tree6af4bec184224553527b0cb8035074b6055ee774 /libavcodec/avcodec.h
parentca4544409e32d692504b44e4ae804c3538993904 (diff)
VC-1 parser
Originally committed as revision 7809 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 615f6c693b..379414b4e8 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -37,8 +37,8 @@ extern "C" {
#define AV_STRINGIFY(s) AV_TOSTRING(s)
#define AV_TOSTRING(s) #s
-#define LIBAVCODEC_VERSION_INT ((51<<16)+(29<<8)+0)
-#define LIBAVCODEC_VERSION 51.29.0
+#define LIBAVCODEC_VERSION_INT ((51<<16)+(30<<8)+0)
+#define LIBAVCODEC_VERSION 51.30.0
#define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
#define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
@@ -2637,6 +2637,7 @@ extern AVCodecParser mpeg4video_parser;
extern AVCodecParser mpegaudio_parser;
extern AVCodecParser mpegvideo_parser;
extern AVCodecParser pnm_parser;
+extern AVCodecParser vc1_parser;
typedef struct AVBitStreamFilterContext {