diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-02 16:33:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-04 13:24:40 +0200 |
commit | d7ade20adb71267572b12e11c5292e3363077ae2 (patch) | |
tree | 9301798ac50d473f3152842eb75ce65362572025 /libavcodec/avcodec.h | |
parent | 928e2a7d647600c6166b872504c147c27ac915e4 (diff) | |
download | ffmpeg-d7ade20adb71267572b12e11c5292e3363077ae2.tar.gz |
avcodec: add AV_EF_IGNORE_ERR
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 94184758c9..94d4cf06ee 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2620,6 +2620,7 @@ typedef struct AVCodecContext { #define AV_EF_BUFFER (1<<2) ///< detect improper bitstream length #define AV_EF_EXPLODE (1<<3) ///< abort decoding on minor error detection +#define AV_EF_IGNORE_ERR (1<<15) ///< ignore errors and continue #define AV_EF_CAREFUL (1<<16) ///< consider things that violate the spec, are fast to calculate and have not been seen in the wild as errors #define AV_EF_COMPLIANT (1<<17) ///< consider all spec non compliances as errors #define AV_EF_AGGRESSIVE (1<<18) ///< consider things that a sane encoder should not do as an error |