comparison avcodec.h @ 905:2b93dc762f9a libavcodec

fixing illegal 3. esc bug (the mpeg4 std only requires encoders to use unescaped symbols but not esc1 or esc2 if they are shorter than esc3, andjust beause its logical to use the shortest possible vlc doesnt mean encoders do that)
author michaelni
date Wed, 04 Dec 2002 11:47:24 +0000
parents 22ee74da2cd3
children bbe0c99231a7
comparison
equal deleted inserted replaced
904:06776293eabb 905:2b93dc762f9a
546 * decoding: unused 546 * decoding: unused
547 */ 547 */
548 float b_quant_offset; 548 float b_quant_offset;
549 549
550 /** 550 /**
551 * error resilience {-1,0,1} higher values will detect more errors but may missdetect 551 * error resilience higher values will detect more errors but may missdetect
552 * some more or less valid parts as errors 552 * some more or less valid parts as errors
553 * encoding: unused 553 * encoding: unused
554 * decoding: set by user 554 * decoding: set by user
555 */ 555 */
556 int error_resilience; 556 int error_resilience;
557 #define FF_ER_CAREFULL 1
558 #define FF_ER_COMPLIANT 2
559 #define FF_ER_AGGRESSIVE 3
560 #define FF_ER_VERY_AGGRESSIVE 4
557 561
558 /** 562 /**
559 * called at the beginning of each frame to get a buffer for it. 563 * called at the beginning of each frame to get a buffer for it.
560 * if pic.reference is set then the frame will be read later by lavc 564 * if pic.reference is set then the frame will be read later by lavc
561 * encoding: unused 565 * encoding: unused