comparison avcodec.h @ 1490:0355f2b3519a libavcodec

rate distortion optimal cbp support (h263/mpeg4 non intra only)
author michaelni
date Tue, 30 Sep 2003 22:18:43 +0000
parents 337d13aee605
children 222643544cf1
comparison
equal deleted inserted replaced
1489:337d13aee605 1490:0355f2b3519a
13 13
14 #include "common.h" 14 #include "common.h"
15 15
16 #define FFMPEG_VERSION_INT 0x000408 16 #define FFMPEG_VERSION_INT 0x000408
17 #define FFMPEG_VERSION "0.4.8" 17 #define FFMPEG_VERSION "0.4.8"
18 #define LIBAVCODEC_BUILD 4680 18 #define LIBAVCODEC_BUILD 4681
19 19
20 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT 20 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
21 #define LIBAVCODEC_VERSION FFMPEG_VERSION 21 #define LIBAVCODEC_VERSION FFMPEG_VERSION
22 22
23 #define AV_STRINGIFY(s) AV_TOSTRING(s) 23 #define AV_STRINGIFY(s) AV_TOSTRING(s)
228 #define CODEC_FLAG_GLOBAL_HEADER 0x00400000 ///< place global headers in extradata instead of every keyframe 228 #define CODEC_FLAG_GLOBAL_HEADER 0x00400000 ///< place global headers in extradata instead of every keyframe
229 #define CODEC_FLAG_BITEXACT 0x00800000 ///< use only bitexact stuff (except (i)dct) 229 #define CODEC_FLAG_BITEXACT 0x00800000 ///< use only bitexact stuff (except (i)dct)
230 /* Fx : Flag for h263+ extra options */ 230 /* Fx : Flag for h263+ extra options */
231 #define CODEC_FLAG_H263P_AIC 0x01000000 ///< Advanced intra coding 231 #define CODEC_FLAG_H263P_AIC 0x01000000 ///< Advanced intra coding
232 #define CODEC_FLAG_H263P_UMV 0x02000000 ///< Unlimited motion vector 232 #define CODEC_FLAG_H263P_UMV 0x02000000 ///< Unlimited motion vector
233 #define CODEC_FLAG_CBP_RD 0x04000000 ///< use rate distortion optimization for cbp
233 /* For advanced prediction mode, we reuse the 4MV flag */ 234 /* For advanced prediction mode, we reuse the 4MV flag */
234 /* Unsupported options : 235 /* Unsupported options :
235 * Syntax Arithmetic coding (SAC) 236 * Syntax Arithmetic coding (SAC)
236 * Deblocking filter internal loop 237 * Deblocking filter internal loop
237 * Slice structured 238 * Slice structured