comparison avcodec.h @ 7342:8c4e0043c068 libavcodec

Correct b_quant offset comment in avcodec.h, it is the description for b_quant factor. patch by tripp, eliared yahoo com
author diego
date Mon, 21 Jul 2008 20:52:24 +0000
parents 3f49e04bcbe1
children 7b2819083061
comparison
equal deleted inserted replaced
7341:b75aa0197be4 7342:8c4e0043c068
988 */ 988 */
989 int max_b_frames; 989 int max_b_frames;
990 990
991 /** 991 /**
992 * qscale factor between IP and B-frames 992 * qscale factor between IP and B-frames
993 * If > 0 then the last P-frame quantizer will be used (q= lastp_q*factor+offset).
994 * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
993 * - encoding: Set by user. 995 * - encoding: Set by user.
994 * - decoding: unused 996 * - decoding: unused
995 */ 997 */
996 float b_quant_factor; 998 float b_quant_factor;
997 999
1133 #define FF_COMPLIANCE_INOFFICIAL -1 ///< Allow inofficial extensions. 1135 #define FF_COMPLIANCE_INOFFICIAL -1 ///< Allow inofficial extensions.
1134 #define FF_COMPLIANCE_EXPERIMENTAL -2 ///< Allow nonstandardized experimental things. 1136 #define FF_COMPLIANCE_EXPERIMENTAL -2 ///< Allow nonstandardized experimental things.
1135 1137
1136 /** 1138 /**
1137 * qscale offset between IP and B-frames 1139 * qscale offset between IP and B-frames
1138 * If > 0 then the last P-frame quantizer will be used (q= lastp_q*factor+offset).
1139 * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
1140 * - encoding: Set by user. 1140 * - encoding: Set by user.
1141 * - decoding: unused 1141 * - decoding: unused
1142 */ 1142 */
1143 float b_quant_offset; 1143 float b_quant_offset;
1144 1144