Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Dolganov <dolganov@qst.hk>2016-08-18 14:40:09 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-08-22 17:41:33 +0300
commit4edd74bd7c0aaef92d3ef81e627ec7660715e9e1 (patch)
tree1bc6bba98681bfd95847c4bddf92d00ba745e500 /libavcodec/me_cmp.h
parentdcfd24b10c7eaec4b7b1ec2c4abb46808721a71d (diff)
avcodec/me_cmp: add median SAD compare function
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/me_cmp.h')
-rw-r--r--libavcodec/me_cmp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/me_cmp.h b/libavcodec/me_cmp.h
index a3603ec2c1..5666f59ade 100644
--- a/libavcodec/me_cmp.h
+++ b/libavcodec/me_cmp.h
@@ -76,6 +76,7 @@ typedef struct MECmpContext {
me_cmp_func frame_skip_cmp[6]; // only width 8 used
me_cmp_func pix_abs[2][4];
+ me_cmp_func median_sad[2];
} MECmpContext;
void ff_me_cmp_init_static(void);