From: Stone Chen <chen.stonechen@gmail.com> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH v5 1/2][GSoC 2024] libavcodec/x86/vvc: Add AVX2 DMVR SAD functions for VVC Date: Thu, 23 May 2024 09:23:45 -0400 Message-ID: <CAHpaCCjHdMwFQR8w4+ivPEpFtq-RbOaHhhmhpDhedTwLouLLFw@mail.gmail.com> (raw) In-Reply-To: <CAFXK13eFtL9t6pqUUnCK7aighNxBX1Wufc0w1noSpNdWCB9YkA@mail.gmail.com> On Thu, May 23, 2024 at 9:18 AM Nuo Mi <nuomi2021@gmail.com> wrote: > On Thu, May 23, 2024 at 7:38 AM James Almer <jamrial@gmail.com> wrote: > > > On 5/21/2024 10:01 PM, Ronald S. Bultje wrote: > > > Hi, > > > > > > On Tue, May 21, 2024 at 8:01 PM Stone Chen <chen.stonechen@gmail.com> > > wrote: > > > > > >> Implements AVX2 DMVR (decoder-side motion vector refinement) SAD > > >> functions. DMVR SAD is only calculated if w >= 8, h >= 8, and w * h > > > 128. > > >> To reduce complexity, SAD is only calculated on even rows. This is > > >> calculated for all video bitdepths, but the values passed to the > > function > > >> are always 16bit (even if the original video bitdepth is 8). The AVX2 > > >> implementation uses min/max/sub. > > >> > > >> Additionally this changes parameters dx and dy from int to intptr_t. > > This > > >> allows dx & dy to be used as pointer offsets without needing to use > > movsxd. > > >> > > >> Benchmarks ( AMD 7940HS ) > > >> Before: > > >> BQTerrace_1920x1080_60_10_420_22_RA.vvc | 106.0 | > > >> Chimera_8bit_1080P_1000_frames.vvc | 204.3 | > > >> NovosobornayaSquare_1920x1080.bin | 197.3 | > > >> RitualDance_1920x1080_60_10_420_37_RA.266 | 174.0 | > > >> > > >> After: > > >> BQTerrace_1920x1080_60_10_420_22_RA.vvc | 109.3 | > > >> Chimera_8bit_1080P_1000_frames.vvc | 216.0 | > > >> NovosobornayaSquare_1920x1080.bin | 204.0| > > >> RitualDance_1920x1080_60_10_420_37_RA.266 | 181.7 | > > >> --- > > >> libavcodec/vvc/dsp.c | 2 +- > > >> libavcodec/vvc/dsp.h | 2 +- > > >> libavcodec/x86/vvc/Makefile | 3 +- > > >> libavcodec/x86/vvc/vvc_sad.asm | 130 > +++++++++++++++++++++++++++++++ > > >> libavcodec/x86/vvc/vvcdsp_init.c | 6 ++ > > >> 5 files changed, 140 insertions(+), 3 deletions(-) > > >> create mode 100644 libavcodec/x86/vvc/vvc_sad.asm > > >> > > > > > > LGTM. > > > > > > Ronald > > > > Implemented my changes and applied. > > > Hi all, > Thank you, Ronald, Andreas, and James. > > Hi Stone, > Congratulations on surviving your first crossfire! > Yes thank you Ronald, Andreas and James for the feedback! Also Nuo Mi and Jian Hua as well. -Stone > > _______________________________________________ > > 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". > > > _______________________________________________ > 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". > _______________________________________________ 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".
next prev parent reply other threads:[~2024-05-23 13:24 UTC|newest] Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-05-22 0:00 Stone Chen 2024-05-22 0:00 ` [FFmpeg-devel] [PATCH v5 2/2][GSoC 2024] tests/checkasm: Add check_vvc_sad to vvc_mc.c Stone Chen 2024-05-22 1:12 ` Ronald S. Bultje 2024-05-22 23:37 ` James Almer 2024-05-22 2:03 ` James Almer 2024-05-22 1:01 ` [FFmpeg-devel] [PATCH v5 1/2][GSoC 2024] libavcodec/x86/vvc: Add AVX2 DMVR SAD functions for VVC Ronald S. Bultje 2024-05-22 23:38 ` James Almer 2024-05-23 13:18 ` Nuo Mi 2024-05-23 13:23 ` Stone Chen [this message] 2024-05-22 5:02 ` Andreas Rheinhardt 2024-05-22 22:54 ` James Almer
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=CAHpaCCjHdMwFQR8w4+ivPEpFtq-RbOaHhhmhpDhedTwLouLLFw@mail.gmail.com \ --to=chen.stonechen@gmail.com \ --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