diff 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
line wrap: on
line diff
--- a/avcodec.h	Sat Jul 19 15:48:53 2008 +0000
+++ b/avcodec.h	Sat Jul 19 15:57:06 2008 +0000
@@ -1117,7 +1117,14 @@
     /**
      * strictly follow the standard (MPEG4, ...).
      * - encoding: Set by user.
-     * - decoding: unused
+     * - decoding: Set by user.
+     * Setting this to STRICT or higher means the encoder and decoder will
+     * generally do stupid things. While setting it to inofficial or lower
+     * will mean the encoder might use things that are not supported by all
+     * spec compliant decoders. Decoders make no difference between normal,
+     * inofficial and experimental, that is they always try to decode things
+     * when they can unless they are explicitly asked to behave stupid
+     * (=strictly conform to the specs)
      */
     int strict_std_compliance;
 #define FF_COMPLIANCE_VERY_STRICT   2 ///< Strictly conform to a older more strict version of the spec or reference software.