comparison avcodec.h @ 1616:13a20c0594f2 libavcodec

rate distored optimal lambda->qp support
author michael
date Wed, 12 Nov 2003 12:25:44 +0000
parents 721a76648a4b
children 39415c362982
comparison
equal deleted inserted replaced
1615:721a76648a4b 1616:13a20c0594f2
253 /* Fx : Flag for h263+ extra options */ 253 /* Fx : Flag for h263+ extra options */
254 #define CODEC_FLAG_H263P_AIC 0x01000000 ///< H263 Advanced intra coding / MPEG4 AC prediction (remove this) 254 #define CODEC_FLAG_H263P_AIC 0x01000000 ///< H263 Advanced intra coding / MPEG4 AC prediction (remove this)
255 #define CODEC_FLAG_AC_PRED 0x01000000 ///< H263 Advanced intra coding / MPEG4 AC prediction 255 #define CODEC_FLAG_AC_PRED 0x01000000 ///< H263 Advanced intra coding / MPEG4 AC prediction
256 #define CODEC_FLAG_H263P_UMV 0x02000000 ///< Unlimited motion vector 256 #define CODEC_FLAG_H263P_UMV 0x02000000 ///< Unlimited motion vector
257 #define CODEC_FLAG_CBP_RD 0x04000000 ///< use rate distortion optimization for cbp 257 #define CODEC_FLAG_CBP_RD 0x04000000 ///< use rate distortion optimization for cbp
258 #define CODEC_FLAG_QP_RD 0x08000000 ///< use rate distortion optimization for qp selectioon
258 /* For advanced prediction mode, we reuse the 4MV flag */ 259 /* For advanced prediction mode, we reuse the 4MV flag */
259 /* Unsupported options : 260 /* Unsupported options :
260 * Syntax Arithmetic coding (SAC) 261 * Syntax Arithmetic coding (SAC)
261 * Deblocking filter internal loop 262 * Deblocking filter internal loop
262 * Slice structured 263 * Slice structured
1063 #define FF_PRED_PLANE 1 1064 #define FF_PRED_PLANE 1
1064 #define FF_PRED_MEDIAN 2 1065 #define FF_PRED_MEDIAN 2
1065 1066
1066 /** 1067 /**
1067 * sample aspect ratio (0 if unknown). 1068 * sample aspect ratio (0 if unknown).
1069 * numerator and denominator must be relative prime and smaller then 256 for some video standards
1068 * - encoding: set by user. 1070 * - encoding: set by user.
1069 * - decoding: set by lavc. 1071 * - decoding: set by lavc.
1070 */ 1072 */
1071 AVRational sample_aspect_ratio; 1073 AVRational sample_aspect_ratio;
1072 1074