comparison avcodec.h @ 7324:3f49e04bcbe1 libavcodec

Make strict_std_compliance available to decoders.
author michael
date Sat, 19 Jul 2008 15:57:06 +0000
parents 48dd72fdca91
children 8c4e0043c068
comparison
equal deleted inserted replaced
7323:5d6c51a125d0 7324:3f49e04bcbe1
1115 int chroma_elim_threshold; 1115 int chroma_elim_threshold;
1116 1116
1117 /** 1117 /**
1118 * strictly follow the standard (MPEG4, ...). 1118 * strictly follow the standard (MPEG4, ...).
1119 * - encoding: Set by user. 1119 * - encoding: Set by user.
1120 * - decoding: unused 1120 * - decoding: Set by user.
1121 * Setting this to STRICT or higher means the encoder and decoder will
1122 * generally do stupid things. While setting it to inofficial or lower
1123 * will mean the encoder might use things that are not supported by all
1124 * spec compliant decoders. Decoders make no difference between normal,
1125 * inofficial and experimental, that is they always try to decode things
1126 * when they can unless they are explicitly asked to behave stupid
1127 * (=strictly conform to the specs)
1121 */ 1128 */
1122 int strict_std_compliance; 1129 int strict_std_compliance;
1123 #define FF_COMPLIANCE_VERY_STRICT 2 ///< Strictly conform to a older more strict version of the spec or reference software. 1130 #define FF_COMPLIANCE_VERY_STRICT 2 ///< Strictly conform to a older more strict version of the spec or reference software.
1124 #define FF_COMPLIANCE_STRICT 1 ///< Strictly conform to all the things in the spec no matter what consequences. 1131 #define FF_COMPLIANCE_STRICT 1 ///< Strictly conform to all the things in the spec no matter what consequences.
1125 #define FF_COMPLIANCE_NORMAL 0 1132 #define FF_COMPLIANCE_NORMAL 0