Searched refs:AV_EF_CAREFUL (Results 1 - 8 of 8) sorted by relevance
/third_party/ffmpeg/libavformat/ |
H A D | options_table.h | 78 {"careful", "consider things that violate the spec, are fast to check and have not been seen in the wild as errors", 0, AV_OPT_TYPE_CONST, {.i64 = AV_EF_CAREFUL }, INT_MIN, INT_MAX, D, "err_detect"}, 79 {"compliant", "consider all spec non compliancies as errors", 0, AV_OPT_TYPE_CONST, {.i64 = AV_EF_COMPLIANT | AV_EF_CAREFUL }, INT_MIN, INT_MAX, D, "err_detect"}, 80 {"aggressive", "consider things that a sane encoder shouldn't do as an error", 0, AV_OPT_TYPE_CONST, {.i64 = AV_EF_AGGRESSIVE | AV_EF_COMPLIANT | AV_EF_CAREFUL}, INT_MIN, INT_MAX, D, "err_detect"},
|
/third_party/ffmpeg/libavcodec/ |
H A D | dcadec.h | 89 if (!(avctx->err_recognition & (AV_EF_CRCCHECK | AV_EF_CAREFUL))) in ff_dca_check_crc()
|
H A D | avcodec.h | 1358 #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 macro
|
H A D | options_table.h | 140 {"careful", "consider things that violate the spec, are fast to check and have not been seen in the wild as errors", 0, AV_OPT_TYPE_CONST, {.i64 = AV_EF_CAREFUL }, INT_MIN, INT_MAX, A|V|S|D|E, "err_detect"}, 141 {"compliant", "consider all spec non compliancies as errors", 0, AV_OPT_TYPE_CONST, {.i64 = AV_EF_COMPLIANT | AV_EF_CAREFUL }, INT_MIN, INT_MAX, A|V|S|D|E, "err_detect"}, 142 {"aggressive", "consider things that a sane encoder should not do as an error", 0, AV_OPT_TYPE_CONST, {.i64 = AV_EF_AGGRESSIVE | AV_EF_COMPLIANT | AV_EF_CAREFUL}, INT_MIN, INT_MAX, A|V|S|D|E, "err_detect"},
|
H A D | alsdec.c | 437 if (avctx->err_recognition & (AV_EF_CRCCHECK|AV_EF_CAREFUL)) { in read_specific_config() 1869 if (sconf->crc_enabled && (avctx->err_recognition & (AV_EF_CRCCHECK|AV_EF_CAREFUL))) { in decode_frame() 2155 (avctx->err_recognition & (AV_EF_CRCCHECK|AV_EF_CAREFUL))) { in decode_init()
|
H A D | dca_lbr.c | 1217 if (s->avctx->err_recognition & (AV_EF_CRCCHECK | AV_EF_CAREFUL)) { in ff_dca_lbr_parse()
|
H A D | ac3dec.c | 1585 } else if (avctx->err_recognition & (AV_EF_CRCCHECK|AV_EF_CAREFUL)) { in ac3_decode_frame()
|
/third_party/ffmpeg/tools/ |
H A D | target_dec_fuzzer.c | 337 ctx->err_recognition = AV_EF_AGGRESSIVE | AV_EF_COMPLIANT | AV_EF_CAREFUL; in LLVMFuzzerTestOneInput()
|
Completed in 16 milliseconds