Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Alan Kelly <alankelly-at-google.com@ffmpeg.org>
To: ffmpeg-devel@ffmpeg.org
Subject: Re: [FFmpeg-devel] [PATCH v2 4/5] libswscale: Enable hscale_avx2 for all input sizes.
Date: Fri, 22 Apr 2022 10:04:45 +0200
Message-ID: <CABaBdZohzbR9Aadm=JXmU9NyR_d-36C4C+5d-amgcDO34fvAXA@mail.gmail.com> (raw)
In-Reply-To: <20220217100420.1113388-1-alankelly@google.com>

Ping!

On Thu, Feb 17, 2022 at 11:04 AM Alan Kelly <alankelly@google.com> wrote:

> ff_shuffle_filter_coefficients shuffles the tail as required.
> ---
>  libswscale/utils.c       | 19 ++++++++++++++++---
>  libswscale/x86/swscale.c |  6 ++----
>  2 files changed, 18 insertions(+), 7 deletions(-)
>
> diff --git a/libswscale/utils.c b/libswscale/utils.c
> index 7c8e1bbdde..d818c9ce55 100644
> --- a/libswscale/utils.c
> +++ b/libswscale/utils.c
> @@ -285,8 +285,7 @@ int ff_shuffle_filter_coefficients(SwsContext *c, int
> *filterPos,
>  #if ARCH_X86_64
>      int i, j, k;
>      int cpu_flags = av_get_cpu_flags();
> -    // avx2 hscale filter processes 16 pixel blocks.
> -    if (!filter || dstW % 16 != 0)
> +    if (!filter)
>          return 0;
>      if (EXTERNAL_AVX2_FAST(cpu_flags) && !(cpu_flags &
> AV_CPU_FLAG_SLOW_GATHER)) {
>          if ((c->srcBpc == 8) && (c->dstBpc <= 14)) {
> @@ -298,9 +297,11 @@ int ff_shuffle_filter_coefficients(SwsContext *c, int
> *filterPos,
>             }
>             // Do not swap filterPos for pixels which won't be processed by
>             // the main loop.
> -           for (i = 0; i + 8 <= dstW; i += 8) {
> +           for (i = 0; i + 16 <= dstW; i += 16) {
>                 FFSWAP(int, filterPos[i + 2], filterPos[i + 4]);
>                 FFSWAP(int, filterPos[i + 3], filterPos[i + 5]);
> +               FFSWAP(int, filterPos[i + 10], filterPos[i + 12]);
> +               FFSWAP(int, filterPos[i + 11], filterPos[i + 13]);
>             }
>             if (filterSize > 4) {
>                 // 16 pixels are processed at a time.
> @@ -314,6 +315,18 @@ int ff_shuffle_filter_coefficients(SwsContext *c, int
> *filterPos,
>                         }
>                     }
>                 }
> +               // 4 pixels are processed at a time in the tail.
> +               for (; i < dstW; i += 4) {
> +                   // 4 filter coeffs are processed at a time.
> +                   int rem = dstW - i >= 4 ? 4 : dstW - i;
> +                   for (k = 0; k + 4 <= filterSize; k += 4) {
> +                       for (j = 0; j < rem; ++j) {
> +                           int from = (i + j) * filterSize + k;
> +                           int to = i * filterSize + j * 4 + k * 4;
> +                           memcpy(&filter[to], &filterCopy[from], 4 *
> sizeof(int16_t));
> +                       }
> +                   }
> +               }
>             }
>             av_free(filterCopy);
>          }
> diff --git a/libswscale/x86/swscale.c b/libswscale/x86/swscale.c
> index 73869355b8..76f5a70fc5 100644
> --- a/libswscale/x86/swscale.c
> +++ b/libswscale/x86/swscale.c
> @@ -691,10 +691,8 @@ switch(c->dstBpc){ \
>
>      if (EXTERNAL_AVX2_FAST(cpu_flags) && !(cpu_flags &
> AV_CPU_FLAG_SLOW_GATHER)) {
>          if ((c->srcBpc == 8) && (c->dstBpc <= 14)) {
> -            if (c->chrDstW % 16 == 0)
> -                ASSIGN_AVX2_SCALE_FUNC(c->hcScale, c->hChrFilterSize);
> -            if (c->dstW % 16 == 0)
> -                ASSIGN_AVX2_SCALE_FUNC(c->hyScale, c->hLumFilterSize);
> +            ASSIGN_AVX2_SCALE_FUNC(c->hcScale, c->hChrFilterSize);
> +            ASSIGN_AVX2_SCALE_FUNC(c->hyScale, c->hLumFilterSize);
>          }
>      }
>
> --
> 2.35.1.265.g69c8d7142f-goog
>
>
_______________________________________________
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".

  reply	other threads:[~2022-04-22  8:05 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-17 10:04 Alan Kelly
2022-04-22  8:04 ` Alan Kelly [this message]
2022-07-13  8:05   ` Alan Kelly
2022-07-14 16:56 ` Michael Niedermayer
2022-07-15 14:59   ` Alan Kelly
2022-07-15 15:03     ` Alan Kelly
2022-07-16 11:14       ` Michael Niedermayer
2022-07-18  7:54         ` Alan Kelly
2022-07-18 16:49           ` Michael Niedermayer
2022-08-15  8:36             ` Alan Kelly

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='CABaBdZohzbR9Aadm=JXmU9NyR_d-36C4C+5d-amgcDO34fvAXA@mail.gmail.com' \
    --to=alankelly-at-google.com@ffmpeg.org \
    --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