1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-09-16 08:36:51 +02:00

checkasm/vf_colordetect: test non-aligned width

This commit is contained in:
Zhao Zhili
2025-08-21 16:40:09 +08:00
committed by Zhao Zhili
parent f07c12d806
commit 6450e01446

View File

@@ -22,9 +22,9 @@
#include "libavfilter/vf_colordetect.h"
#include "libavutil/mem_internal.h"
#define WIDTH 256
#define WIDTH 540
#define HEIGHT 16
#define STRIDE (WIDTH + 32)
#define STRIDE FFALIGN(WIDTH, 32)
static void check_range_detect(int depth)
{