This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 90cca8111b7db00f33ca0910f599957553a68843 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Wed Jun 24 01:07:02 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Sat Jun 27 00:06:08 2026 +0200 tests/checkasm/hevc_pel: Don't test impossible values denom is in 0..7 (see pred_weight_table() in hevcdec.c). Signed-off-by: Andreas Rheinhardt <[email protected]> --- tests/checkasm/hevc_pel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/checkasm/hevc_pel.c b/tests/checkasm/hevc_pel.c index 000d1e7a57..12d28eaccb 100644 --- a/tests/checkasm/hevc_pel.c +++ b/tests/checkasm/hevc_pel.c @@ -30,7 +30,7 @@ static const uint32_t pixel_mask[] = { 0xffffffff, 0x01ff01ff, 0x03ff03ff, 0x07f static const uint32_t pixel_mask16[] = { 0x00ff00ff, 0x01ff01ff, 0x03ff03ff, 0x07ff07ff, 0x0fff0fff }; static const int sizes[] = { -1, 4, 6, 8, 12, 16, 24, 32, 48, 64 }; static const int weights[] = { 0, 128, 255, -1 }; -static const int denoms[] = {0, 7, 12, -1 }; +static const int denoms[] = {0, 7, -1 }; static const int offsets[] = {0, 255, -1 }; #define SIZEOF_PIXEL ((bit_depth + 7) / 8) _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
