diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-12-01 15:23:14 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-12-01 15:23:14 +0000 |
commit | 332f9ac4e31ce5e6d0c42ac9e0229d7d1b2b4d60 (patch) | |
tree | 4ad6a7c4fd0caa012f851d930b5b8e2ff5be9141 /libavcodec/avcodec.h | |
parent | e692c8634cc01c7091d99ec0f58d25715704702b (diff) | |
download | ffmpeg-332f9ac4e31ce5e6d0c42ac9e0229d7d1b2b4d60.tar.gz |
h263 loop filter
fixed h263 modified quantization
CODEC_FLAG_OBMC
Originally committed as revision 2549 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f265c33085..1748fc64c7 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -260,6 +260,8 @@ static const __attribute__((unused)) int Motion_Est_QTab[] = #define CODEC_FLAG_CBP_RD 0x04000000 ///< use rate distortion optimization for cbp #define CODEC_FLAG_QP_RD 0x08000000 ///< use rate distortion optimization for qp selectioon #define CODEC_FLAG_H263P_AIV 0x00000008 ///< H263 Alternative inter vlc +#define CODEC_FLAG_OBMC 0x00000001 ///< OBMC +#define CODEC_FLAG_LOOP_FILTER 0x00000800 ///< loop filter /* For advanced prediction mode, we reuse the 4MV flag */ /* Unsupported options : * Syntax Arithmetic coding (SAC) |