diff options
author | Clément Bœsch <clement@stupeflix.com> | 2015-10-26 11:17:03 +0100 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2015-10-26 15:39:09 +0100 |
commit | 90c4ccc629a3370e11a71c6e12352dbe180fe7d6 (patch) | |
tree | 35b66e61bc5bf5a41e033bd2fec1983a1ce3ee2e | |
parent | 7794627032e94c8270308bac4141de7e3d0dc27f (diff) | |
download | ffmpeg-90c4ccc629a3370e11a71c6e12352dbe180fe7d6.tar.gz |
avcodec/options: remove redundant and wrong default information for skipcmp option
-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 8b32ae239b..0bd21aaf0c 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -283,7 +283,7 @@ static const AVOption avcodec_options[] = { {"last_pred", "amount of motion predictors from the previous frame", OFFSET(last_predictor_count), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX, V|E}, {"preme", "pre motion estimation", OFFSET(pre_me), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX, V|E}, {"precmp", "pre motion estimation compare function", OFFSET(me_pre_cmp), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX, V|E, "cmp_func"}, -{"sad", "sum of absolute differences, fast (default)", 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_SAD }, INT_MIN, INT_MAX, V|E, "cmp_func"}, +{"sad", "sum of absolute differences, fast", 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_SAD }, INT_MIN, INT_MAX, V|E, "cmp_func"}, {"sse", "sum of squared errors", 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_SSE }, INT_MIN, INT_MAX, V|E, "cmp_func"}, {"satd", "sum of absolute Hadamard transformed differences", 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_SATD }, INT_MIN, INT_MAX, V|E, "cmp_func"}, {"dct", "sum of absolute DCT transformed differences", 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_DCT }, INT_MIN, INT_MAX, V|E, "cmp_func"}, |