diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-07-19 15:57:06 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-07-19 15:57:06 +0000 |
commit | 5771b2c324b65709d925bb8ee5dec9090e9293f7 (patch) | |
tree | d0a14a7ac6ff387b6b464908e32e3bb85f740d74 /libavcodec/avcodec.h | |
parent | f7dbf86d935376d622db7ada1a3fe1bf64e8e8b0 (diff) | |
download | ffmpeg-5771b2c324b65709d925bb8ee5dec9090e9293f7.tar.gz |
Make strict_std_compliance available to decoders.
Originally committed as revision 14306 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index d286361066..4942ab1ee1 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1117,7 +1117,14 @@ typedef struct AVCodecContext { /** * 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. |