Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Change #273256

Category ffmpeg
Changed by Jeongkeun Kim <variety0724ohnoyoudont@gmail.com>
Changed at Mon 29 Jun 2026 23:40:05
Repository https://git.ffmpeg.org/ffmpeg.git
Project ffmpeg
Branch master
Revision 2be6bf55079ea512717153f6df673391e9563e78

Comments

tests/checkasm/llviddsp: fix add_left_pred_int16 buffer compare size
dst0/dst1 are uint16_t* allocated as width * sizeof(uint16_t), but
the memcmp at the end of check_add_left_pred_16 only compared `width`
bytes — missing the second half of each buffer. Same pattern used
correctly in tests/checkasm/huffyuvdsp.c (memcmp with width * sizeof()).

While at it, fix missing whitespace around & and || on the same line.

Fixes: fbe91487797c ("checkasm/llviddsp : add test for other dsp func")
Signed-off-by: Jeongkeun Kim <variety0724@gmail.com>

Changed files