diff options
author | Stanislav Dolganov <dolganov@qst.hk> | 2016-08-18 14:40:09 +0300 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-08-22 16:41:33 +0200 |
commit | 4edd74bd7c0aaef92d3ef81e627ec7660715e9e1 (patch) | |
tree | 1bc6bba98681bfd95847c4bddf92d00ba745e500 /libavcodec/options_table.h | |
parent | dcfd24b10c7eaec4b7b1ec2c4abb46808721a71d (diff) | |
download | ffmpeg-4edd74bd7c0aaef92d3ef81e627ec7660715e9e1.tar.gz |
avcodec/me_cmp: add median SAD compare function
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/options_table.h')
-rw-r--r-- | libavcodec/options_table.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index adfbe72bff..fe354549a8 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -312,6 +312,7 @@ static const AVOption avcodec_options[] = { #endif {"dctmax", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_DCTMAX }, INT_MIN, INT_MAX, V|E, "cmp_func"}, {"chroma", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_CHROMA }, INT_MIN, INT_MAX, V|E, "cmp_func"}, +{"msad", "sum of absolute differences, median predicted", 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_MEDIAN_SAD }, INT_MIN, INT_MAX, V|E, "cmp_func"}, {"pre_dia_size", "diamond type & size for motion estimation pre-pass", OFFSET(pre_dia_size), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX, V|E}, {"subq", "sub-pel motion estimation quality", OFFSET(me_subpel_quality), AV_OPT_TYPE_INT, {.i64 = 8 }, INT_MIN, INT_MAX, V|E}, #if FF_API_AFD |