Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: "Martin Storsjö" <martin@martin.st>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH 1/3] checkasm/hevc_add_res: add 12bit test
Date: Tue, 9 Aug 2022 14:02:00 +0300 (EEST)
Message-ID: <b995409c-f2f9-4214-f3da-b5c4ca7fd16@martin.st> (raw)
In-Reply-To: <20220623180407.21081-1-jdek@itanimul.li>

On Thu, 23 Jun 2022, J. Dekker wrote:

> Signed-off-by: J. Dekker <jdek@itanimul.li>
> ---
> tests/checkasm/hevc_add_res.c | 15 ++++++++-------
> 1 file changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/tests/checkasm/hevc_add_res.c b/tests/checkasm/hevc_add_res.c
> index 0c896adaca..f17d121939 100644
> --- a/tests/checkasm/hevc_add_res.c
> +++ b/tests/checkasm/hevc_add_res.c
> @@ -36,14 +36,14 @@
>         }                                       \
>     } while (0)
>
> -#define randomize_buffers2(buf, size)             \
> +#define randomize_buffers2(buf, size, mask)       \
>     do {                                          \
>         int j;                                    \
>         for (j = 0; j < size; j++)                \
> -            AV_WN16A(buf + j * 2, rnd() & 0x3FF); \
> +            AV_WN16A(buf + j * 2, rnd() & mask); \
>     } while (0)
>
> -static void compare_add_res(int size, ptrdiff_t stride, int overflow_test)
> +static void compare_add_res(int size, ptrdiff_t stride, int overflow_test, int mask)
> {
>     LOCAL_ALIGNED_32(int16_t, res0, [32 * 32]);
>     LOCAL_ALIGNED_32(int16_t, res1, [32 * 32]);
> @@ -53,7 +53,7 @@ static void compare_add_res(int size, ptrdiff_t stride, int overflow_test)
>     declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, int16_t *res, ptrdiff_t stride);
>
>     randomize_buffers(res0, size);
> -    randomize_buffers2(dst0, size);
> +    randomize_buffers2(dst0, size, mask);
>     if (overflow_test)
>         res0[0] = 0x8000;
>     memcpy(res1, res0, sizeof(*res0) * size);
> @@ -69,6 +69,7 @@ static void compare_add_res(int size, ptrdiff_t stride, int overflow_test)
> static void check_add_res(HEVCDSPContext h, int bit_depth)
> {
>     int i;
> +    int mask = bit_depth == 8 ? 0xFFFF : bit_depth == 10 ? 0x03FF : 0x07FF;

Previously we always used the mask 0x03FF, while we now use 0xFFFF for 8 
bit. I presume that means that for 8 bit, we mask two pixels with one 
0xFFFF (and keep all bits), and previously we accidentally masked out 
everything but the lowest two bits, from every other pixel, in 8 bit mode?

The patch LGTM, but it'd be good to acknowledge this existing issue in the 
commit message.

// Martin

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

      parent reply	other threads:[~2022-08-09 11:02 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-23 18:04 J. Dekker
2022-06-23 18:04 ` [FFmpeg-devel] [PATCH 2/3] lavc/aarch64: reformat add_res funcs J. Dekker
2022-08-09 11:04   ` Martin Storsjö
2022-06-23 18:04 ` [FFmpeg-devel] [PATCH 3/3] lavc/aarch64: hevc_add_res add 12bit variants J. Dekker
2022-08-09 11:13   ` Martin Storsjö
2022-08-09 11:21     ` Martin Storsjö
2022-08-16  5:01       ` [FFmpeg-devel] [PATCH v2] " J. Dekker
2022-08-16 11:38         ` Martin Storsjö
2022-08-16 12:12           ` [FFmpeg-devel] [PATCH v3] " J. Dekker
2022-08-16 12:46             ` Martin Storsjö
2022-08-18 13:07               ` J. Dekker
2022-08-09 11:02 ` Martin Storsjö [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b995409c-f2f9-4214-f3da-b5c4ca7fd16@martin.st \
    --to=martin@martin.st \
    --cc=ffmpeg-devel@ffmpeg.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git