diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-12 21:05:58 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-20 18:58:38 +0200 |
commit | b1a31b32abc19df329cf61fa23febd8252978fd3 (patch) | |
tree | 07244fcca00e9d7b2045c90993510c6a5bd62673 /tests | |
parent | cd2e46a3508d123db9d235b71dd06d495d1eecde (diff) | |
download | ffmpeg-b1a31b32abc19df329cf61fa23febd8252978fd3.tar.gz |
avcodec/me_cmp,dvenc,mpegvideo: Move ildct_cmp to its users
MECmpContext.ildct_cmp is an array of function pointers that
are not set by ff_me_cmp_init(), but that are set by users
to one of the other arrays via ff_set_cmp().
Remove these pointers from MECmpContext and add pointers
for the actually used functions to its users. (The DV encoder
already did so.)
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/checkasm/motion.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/checkasm/motion.c b/tests/checkasm/motion.c index 8f9915c63a..bfd1a3c17b 100644 --- a/tests/checkasm/motion.c +++ b/tests/checkasm/motion.c @@ -94,7 +94,6 @@ static void test_motion(const char *name, me_cmp_func test_func) XX(vsad) \ XX(vsse) \ XX(nsse) \ - XX(ildct_cmp) \ XX(median_sad) // tests for functions not yet implemented |