diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-12-31 17:23:56 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-12-31 17:23:56 +0000 |
commit | 477ab036ad89e13fbbce502281861364113a492a (patch) | |
tree | e599356d5c69a5735239e909d63ce8ddbe93761c /libavcodec/avcodec.h | |
parent | bb87a84ce99e3e94ef9f456a36ede3624f92bdf7 (diff) | |
download | ffmpeg-477ab036ad89e13fbbce502281861364113a492a.tar.gz |
trellis quantization
Originally committed as revision 1380 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 155e5e32ee..a5d71c2773 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -5,8 +5,8 @@ #define LIBAVCODEC_VERSION_INT 0x000406 #define LIBAVCODEC_VERSION "0.4.6" -#define LIBAVCODEC_BUILD 4647 -#define LIBAVCODEC_BUILD_STR "4647" +#define LIBAVCODEC_BUILD 4648 +#define LIBAVCODEC_BUILD_STR "4648" enum CodecID { CODEC_ID_NONE, @@ -146,6 +146,7 @@ static const int Motion_Est_QTab[] = { ME_ZERO, ME_PHODS, ME_LOG, #define CODEC_FLAG_INTERLACED_DCT 0x00040000 /* use interlaced dct */ #define CODEC_FLAG_LOW_DELAY 0x00080000 /* force low delay / will fail on b frames */ #define CODEC_FLAG_ALT_SCAN 0x00100000 /* use alternate scan */ +#define CODEC_FLAG_TRELLIS_QUANT 0x00200000 /* use trellis quantization */ /* codec capabilities */ |