aboutsummaryrefslogtreecommitdiffstats
path: root/tests/checkasm/motion.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-05-12 23:57:54 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-06-20 18:58:38 +0200
commit8b4f7c066373a4c373292c54b469a172d63fed35 (patch)
tree2b98456b5ef6c9ebf59c145771ef566e55c054b1 /tests/checkasm/motion.c
parent10e7633cd7d4b727c6cc0c907f1150e0359d7087 (diff)
downloadffmpeg-8b4f7c066373a4c373292c54b469a172d63fed35.tar.gz
avcodec/me_cmp: Zero MECmpContext in ff_me_cmp_init()
Not every function will be set, so zero the context to initialize everything. This also allows to remove an initialization in dvenc.c. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'tests/checkasm/motion.c')
-rw-r--r--tests/checkasm/motion.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/checkasm/motion.c b/tests/checkasm/motion.c
index bfd1a3c17b..7e322da0d5 100644
--- a/tests/checkasm/motion.c
+++ b/tests/checkasm/motion.c
@@ -116,9 +116,6 @@ static void check_motion(void)
AVCodecContext av_ctx = { .codec_id = AV_CODEC_ID_NONE, .flags = AV_CODEC_FLAG_BITEXACT };
MECmpContext me_ctx;
- memset(&me_ctx, 0, sizeof(me_ctx));
-
-
ff_me_cmp_init(&me_ctx, &av_ctx);
for (int i = 0; i < FF_ARRAY_ELEMS(me_ctx.pix_abs); i++) {