[FFmpeg-cvslog] avcodec/options: remove redundant and wrong default information for skipcmp option

Clément Bœsch git at videolan.org
Mon Oct 26 15:55:04 CET 2015


ffmpeg | branch: master | Clément Bœsch <clement at stupeflix.com> | Mon Oct 26 11:17:03 2015 +0100| [90c4ccc629a3370e11a71c6e12352dbe180fe7d6] | committer: Clément Bœsch

avcodec/options: remove redundant and wrong default information for skipcmp option

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=90c4ccc629a3370e11a71c6e12352dbe180fe7d6
---

 libavcodec/options_table.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h
index 8b32ae2..0bd21aa 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"},



More information about the ffmpeg-cvslog mailing list