summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorJuanjo <pulento@users.sourceforge.net>2002-04-15 02:28:05 +0000
committerJuanjo <pulento@users.sourceforge.net>2002-04-15 02:28:05 +0000
commit4b1f4f236b1019e69396676f1eb455bbea0d8e17 (patch)
treeaac32420abdbb0e34991150d71f2d86bac11bcae /libavcodec/avcodec.h
parent101bea5f2272dfcca084aeeb78ccb1c2e925b12b (diff)
- Versions defined for libav/libavcodec.
- Bug fix in wav muxer for MP2 audio. - ffmpeg/libavcodec version in MPEG-4 user data. Originally committed as revision 400 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index c5209bdac6..07d6d5889c 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -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 @@ enum Motion_Est_ID {
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 mpeg_decoder;
extern AVCodec h263i_decoder;
extern AVCodec rv10_decoder;
extern AVCodec mjpeg_decoder;
+extern AVCodec mp2_decoder;
extern AVCodec mp3_decoder;
/* pcm codecs */