diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-10-27 22:21:09 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-27 22:30:31 +0100 |
commit | 69d39cb90c24264e23ac05e7a42cd7657e7c6785 (patch) | |
tree | d8c212a9a8ef96f9fc89ef639e748cb64fd5a8b9 /libavcodec | |
parent | e797bd9dc771cf3b0da150a0275eff4c0dd6579e (diff) | |
download | ffmpeg-69d39cb90c24264e23ac05e7a42cd7657e7c6785.tar.gz |
Revert "avcodec/options_table: disable CRC checking by default"
This reverts commit c7027ce9eac04fb20bd85fa37dbf24856c080c45.
It appears there is no complete consensus on this currently.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/options_table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index 7ddb75fafa..c1a4ceb3a9 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -144,7 +144,7 @@ static const AVOption avcodec_options[] = { {"unofficial", "allow unofficial extensions", 0, AV_OPT_TYPE_CONST, {.i64 = FF_COMPLIANCE_UNOFFICIAL }, INT_MIN, INT_MAX, V|D|E, "strict"}, {"experimental", "allow non-standardized experimental things", 0, AV_OPT_TYPE_CONST, {.i64 = FF_COMPLIANCE_EXPERIMENTAL }, INT_MIN, INT_MAX, V|D|E, "strict"}, {"b_qoffset", "QP offset between P- and B-frames", OFFSET(b_quant_offset), AV_OPT_TYPE_FLOAT, {.dbl = 1.25 }, -FLT_MAX, FLT_MAX, V|E}, -{"err_detect", "set error detection flags", OFFSET(err_recognition), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, A|V|D, "err_detect"}, +{"err_detect", "set error detection flags", OFFSET(err_recognition), AV_OPT_TYPE_FLAGS, {.i64 = AV_EF_CRCCHECK }, INT_MIN, INT_MAX, A|V|D, "err_detect"}, {"crccheck", "verify embedded CRCs", 0, AV_OPT_TYPE_CONST, {.i64 = AV_EF_CRCCHECK }, INT_MIN, INT_MAX, A|V|D, "err_detect"}, {"bitstream", "detect bitstream specification deviations", 0, AV_OPT_TYPE_CONST, {.i64 = AV_EF_BITSTREAM }, INT_MIN, INT_MAX, A|V|D, "err_detect"}, {"buffer", "detect improper bitstream length", 0, AV_OPT_TYPE_CONST, {.i64 = AV_EF_BUFFER }, INT_MIN, INT_MAX, A|V|D, "err_detect"}, |