comparison avcodec.h @ 11838:9a18fa62aa52 libavcodec

Improve grammar and readability Patch by Rodney Baker, rodney dot baker at iinet dot net dot au
author mstorsjo
date Sat, 05 Jun 2010 20:58:56 +0000
parents e522dbf60abd
children 677c51ca528d
comparison
equal deleted inserted replaced
11837:bba34e33081d 11838:9a18fa62aa52
1345 /** 1345 /**
1346 * strictly follow the standard (MPEG4, ...). 1346 * strictly follow the standard (MPEG4, ...).
1347 * - encoding: Set by user. 1347 * - encoding: Set by user.
1348 * - decoding: Set by user. 1348 * - decoding: Set by user.
1349 * Setting this to STRICT or higher means the encoder and decoder will 1349 * Setting this to STRICT or higher means the encoder and decoder will
1350 * generally do stupid things. While setting it to inofficial or lower 1350 * generally do stupid things, whereas setting it to inofficial or lower
1351 * will mean the encoder might use things that are not supported by all 1351 * will mean the encoder might produce output that is not supported by all
1352 * spec compliant decoders. Decoders make no difference between normal, 1352 * spec-compliant decoders. Decoders don't differentiate between normal,
1353 * inofficial and experimental, that is they always try to decode things 1353 * inofficial and experimental (that is, they always try to decode things
1354 * when they can unless they are explicitly asked to behave stupid 1354 * when they can) unless they are explicitly asked to behave stupidly
1355 * (=strictly conform to the specs) 1355 * (=strictly conform to the specs)
1356 */ 1356 */
1357 int strict_std_compliance; 1357 int strict_std_compliance;
1358 #define FF_COMPLIANCE_VERY_STRICT 2 ///< Strictly conform to a older more strict version of the spec or reference software. 1358 #define FF_COMPLIANCE_VERY_STRICT 2 ///< Strictly conform to an older more strict version of the spec or reference software.
1359 #define FF_COMPLIANCE_STRICT 1 ///< Strictly conform to all the things in the spec no matter what consequences. 1359 #define FF_COMPLIANCE_STRICT 1 ///< Strictly conform to all the things in the spec no matter what consequences.
1360 #define FF_COMPLIANCE_NORMAL 0 1360 #define FF_COMPLIANCE_NORMAL 0
1361 #define FF_COMPLIANCE_INOFFICIAL -1 ///< Allow inofficial extensions. 1361 #define FF_COMPLIANCE_INOFFICIAL -1 ///< Allow inofficial extensions.
1362 #define FF_COMPLIANCE_EXPERIMENTAL -2 ///< Allow nonstandardized experimental things. 1362 #define FF_COMPLIANCE_EXPERIMENTAL -2 ///< Allow nonstandardized experimental things.
1363 1363