comparison avcodec.h @ 1150:dde68a430ba9 libavcodec

user setable quantizer bias
author michaelni
date Sat, 22 Mar 2003 12:09:02 +0000
parents b48bf370ff44
children 1d2ced5e79f3
comparison
equal deleted inserted replaced
1149:b48bf370ff44 1150:dde68a430ba9
13 13
14 #include "common.h" 14 #include "common.h"
15 15
16 #define LIBAVCODEC_VERSION_INT 0x000406 16 #define LIBAVCODEC_VERSION_INT 0x000406
17 #define LIBAVCODEC_VERSION "0.4.6" 17 #define LIBAVCODEC_VERSION "0.4.6"
18 #define LIBAVCODEC_BUILD 4662 18 #define LIBAVCODEC_BUILD 4663
19 #define LIBAVCODEC_BUILD_STR "4662" 19 #define LIBAVCODEC_BUILD_STR "4663"
20 20
21 #define LIBAVCODEC_IDENT "FFmpeg" LIBAVCODEC_VERSION "b" LIBAVCODEC_BUILD_STR 21 #define LIBAVCODEC_IDENT "FFmpeg" LIBAVCODEC_VERSION "b" LIBAVCODEC_BUILD_STR
22 22
23 enum CodecID { 23 enum CodecID {
24 CODEC_ID_NONE, 24 CODEC_ID_NONE,
1036 * for variable fps this is 1 1036 * for variable fps this is 1
1037 * - encoding: set by user. 1037 * - encoding: set by user.
1038 * - decoding: set by lavc. 1038 * - decoding: set by lavc.
1039 * @todo move this after frame_rate 1039 * @todo move this after frame_rate
1040 */ 1040 */
1041
1041 int frame_rate_base; 1042 int frame_rate_base;
1042 1043 /**
1044 * intra quantizer bias.
1045 * - encoding: set by user.
1046 * - decoding: unused
1047 */
1048 int intra_quant_bias;
1049 #define FF_DEFAULT_QUANT_BIAS 999999
1050
1051 /**
1052 * inter quantizer bias.
1053 * - encoding: set by user.
1054 * - decoding: unused
1055 */
1056 int inter_quant_bias;
1057
1043 } AVCodecContext; 1058 } AVCodecContext;
1044 1059
1045 1060
1046 /** 1061 /**
1047 * AVOption. 1062 * AVOption.