comparison avcodec.h @ 686:83d2c9d50d7d libavcodec

fixing i_quant_factor, this should finally fix the bitrate bug with ffserver hopefully
author michaelni
date Thu, 19 Sep 2002 20:22:39 +0000
parents 581678112a5d
children a1c69cb685b3
comparison
equal deleted inserted replaced
685:44a1dab0205c 686:83d2c9d50d7d
428 */ 428 */
429 int strict_std_compliance; 429 int strict_std_compliance;
430 430
431 /** 431 /**
432 * qscale offset between ip and b frames 432 * qscale offset between ip and b frames
433 * if > 0 then the last p frame quantizer will be used (q= lastp_q*factor+offset)
434 * if < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset)
433 * encoding: set by user. 435 * encoding: set by user.
434 * decoding: unused 436 * decoding: unused
435 */ 437 */
436 float b_quant_offset; 438 float b_quant_offset;
437 439
587 */ 589 */
588 float i_quant_factor; 590 float i_quant_factor;
589 591
590 /** 592 /**
591 * qscale offset between p and i frames 593 * qscale offset between p and i frames
594 * if > 0 then the last p frame quantizer will be used (q= lastp_q*factor+offset)
595 * if < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset)
592 * encoding: set by user. 596 * encoding: set by user.
593 * decoding: unused 597 * decoding: unused
594 */ 598 */
595 float i_quant_offset; 599 float i_quant_offset;
596 600