This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 51699b70cd75f4c00bffa4b03cd93b1d50787fd5 Author: Kacper Michajłow <[email protected]> AuthorDate: Tue Aug 11 16:14:33 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Wed Aug 12 17:21:06 2026 +0200 checkasm/sbcdsp: rename CONST macro to avoid clash with windows.h Signed-off-by: Kacper Michajłow <[email protected]> --- tests/checkasm/sbcdsp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/checkasm/sbcdsp.c b/tests/checkasm/sbcdsp.c index 5eb0d1b3db..0ccf9df49e 100644 --- a/tests/checkasm/sbcdsp.c +++ b/tests/checkasm/sbcdsp.c @@ -54,9 +54,9 @@ static void check_sbc_analyze(SBCDSPContext *sbcdsp) // for sbc_analyze_4 it can be 0 or 8 mod 16. const int16_t *const inp = i || rnd() & 1 ? in : in + 4; // Use the proper const tables as random ones can cause overflow - #define CONST(SIZE, ODDEVEN) sbcdsp_analysis_consts_fixed ## SIZE ## _simd_ ## ODDEVEN - const int16_t *const consts = rnd() & 1 ? (i ? CONST(8, odd) : CONST(4, odd)) - : (i ? CONST(8, even) : CONST(4, even)); + #define A_CONST(SIZE, ODDEVEN) sbcdsp_analysis_consts_fixed ## SIZE ## _simd_ ## ODDEVEN + const int16_t *const consts = rnd() & 1 ? (i ? A_CONST(8, odd) : A_CONST(4, odd)) + : (i ? A_CONST(8, even) : A_CONST(4, even)); call_ref(inp, out_ref, consts); call_new(inp, out_new, consts); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
