diff avcodec.h @ 322:ce35fd27bbb0 libavcodec

- Versions defined for libav/libavcodec. - Bug fix in wav muxer for MP2 audio. - ffmpeg/libavcodec version in MPEG-4 user data.
author pulento
date Mon, 15 Apr 2002 02:28:05 +0000
parents 2b00e171b1d4
children 9c6f056f0e41
line wrap: on
line diff
--- a/avcodec.h	Sun Apr 14 22:17:40 2002 +0000
+++ b/avcodec.h	Mon Apr 15 02:28:05 2002 +0000
@@ -3,6 +3,11 @@
 
 #include "common.h"
 
+#define LIBAVCODEC_VERSION_INT 0x000406
+#define LIBAVCODEC_VERSION     "0.4.6"
+#define LIBAVCODEC_BUILD       4600
+#define LIBAVCODEC_BUILD_STR   "4600"
+
 enum CodecID {
     CODEC_ID_NONE, 
     CODEC_ID_MPEG1VIDEO,
@@ -70,7 +75,7 @@
 extern int motion_estimation_method;
 
 /* ME algos sorted by quality */
-static const int Motion_Est_QTab[] = { -4, -1, -2, 1, 0, -3 };
+static const int Motion_Est_QTab[] = { 1, 4, 3, 6, 5, 2 };
 
 /* encoding support */
 /* note not everything is supported yet */
@@ -229,6 +234,7 @@
 extern AVCodec h263i_decoder;
 extern AVCodec rv10_decoder;
 extern AVCodec mjpeg_decoder;
+extern AVCodec mp2_decoder;
 extern AVCodec mp3_decoder;
 
 /* pcm codecs */