Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Michael Niedermayer <michael@niedermayer.cc>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH 1/4] avcodec/snow: Move ff_snow_inner_add_yblock() to snow_dwt.c
Date: Wed, 21 Sep 2022 11:19:54 +0200
Message-ID: <20220921091954.GC6583@pb2> (raw)
In-Reply-To: <GV1P250MB0737A541ACB7F42A5C6922CD8F4D9@GV1P250MB0737.EURP250.PROD.OUTLOOK.COM>


[-- Attachment #1.1: Type: text/plain, Size: 4739 bytes --]

On Mon, Sep 19, 2022 at 11:27:49PM +0200, Andreas Rheinhardt wrote:
> Only used there and by x86 snow asm code as fallback.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
>  libavcodec/snow.c     | 33 ---------------------------------
>  libavcodec/snow.h     |  3 ---
>  libavcodec/snow_dwt.c | 32 ++++++++++++++++++++++++++++++++
>  libavcodec/snow_dwt.h |  3 +++
>  4 files changed, 35 insertions(+), 36 deletions(-)
> 
> diff --git a/libavcodec/snow.c b/libavcodec/snow.c
> index aa15fccc42..85ad6d10a1 100644
> --- a/libavcodec/snow.c
> +++ b/libavcodec/snow.c
> @@ -29,39 +29,6 @@
>  #include "snowdata.h"
>  
>  
> -void ff_snow_inner_add_yblock(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h,
> -                              int src_x, int src_y, int src_stride, slice_buffer * sb, int add, uint8_t * dst8){
> -    int y, x;
> -    IDWTELEM * dst;
> -    for(y=0; y<b_h; y++){
> -        //FIXME ugly misuse of obmc_stride
> -        const uint8_t *obmc1= obmc + y*obmc_stride;
> -        const uint8_t *obmc2= obmc1+ (obmc_stride>>1);
> -        const uint8_t *obmc3= obmc1+ obmc_stride*(obmc_stride>>1);
> -        const uint8_t *obmc4= obmc3+ (obmc_stride>>1);
> -        dst = slice_buffer_get_line(sb, src_y + y);
> -        for(x=0; x<b_w; x++){
> -            int v=   obmc1[x] * block[3][x + y*src_stride]
> -                    +obmc2[x] * block[2][x + y*src_stride]
> -                    +obmc3[x] * block[1][x + y*src_stride]
> -                    +obmc4[x] * block[0][x + y*src_stride];
> -
> -            v <<= 8 - LOG2_OBMC_MAX;
> -            if(FRAC_BITS != 8){
> -                v >>= 8 - FRAC_BITS;
> -            }
> -            if(add){
> -                v += dst[x + src_x];
> -                v = (v + (1<<(FRAC_BITS-1))) >> FRAC_BITS;
> -                if(v&(~255)) v= ~(v>>31);
> -                dst8[x + y*src_stride] = v;
> -            }else{
> -                dst[x + src_x] -= v;
> -            }
> -        }
> -    }
> -}
> -
>  int ff_snow_get_buffer(SnowContext *s, AVFrame *frame)
>  {
>      int ret, i;
> diff --git a/libavcodec/snow.h b/libavcodec/snow.h
> index ed0f9abb42..1c976b9ba7 100644
> --- a/libavcodec/snow.h
> +++ b/libavcodec/snow.h
> @@ -45,11 +45,8 @@
>  #define QSHIFT 5
>  #define QROOT (1<<QSHIFT)
>  #define LOSSLESS_QLOG -128
> -#define FRAC_BITS 4
>  #define MAX_REF_FRAMES 8
>  
> -#define LOG2_OBMC_MAX 8
> -#define OBMC_MAX (1<<(LOG2_OBMC_MAX))
>  typedef struct BlockNode{
>      int16_t mx;                 ///< Motion vector component X, see mv_scale
>      int16_t my;                 ///< Motion vector component Y, see mv_scale
> diff --git a/libavcodec/snow_dwt.c b/libavcodec/snow_dwt.c
> index 18b315ef66..9401d119d0 100644
> --- a/libavcodec/snow_dwt.c
> +++ b/libavcodec/snow_dwt.c
> @@ -25,6 +25,38 @@
>  #include "me_cmp.h"
>  #include "snow_dwt.h"
>  
> +void ff_snow_inner_add_yblock(const uint8_t *obmc, const int obmc_stride,
> +                              uint8_t **block, int b_w, int b_h,
> +                              int src_x, int src_y, int src_stride,
> +                              slice_buffer * sb, int add, uint8_t * dst8)
> +{
> +    for (int y = 0; y < b_h; y++) {
> +        //FIXME ugly misuse of obmc_stride
> +        const uint8_t *obmc1 = obmc  + y * obmc_stride;
> +        const uint8_t *obmc2 = obmc1 + (obmc_stride >> 1);
> +        const uint8_t *obmc3 = obmc1 + obmc_stride * (obmc_stride >> 1);
> +        const uint8_t *obmc4 = obmc3 + (obmc_stride >> 1);
> +        IDWTELEM *dst = slice_buffer_get_line(sb, src_y + y);
> +        for (int x = 0; x < b_w; x++) {
> +            int v = obmc1[x] * block[3][x + y*src_stride]
> +                  + obmc2[x] * block[2][x + y*src_stride]
> +                  + obmc3[x] * block[1][x + y*src_stride]
> +                  + obmc4[x] * block[0][x + y*src_stride];
> +
> +            v <<= 8 - LOG2_OBMC_MAX;
> +            if (FRAC_BITS != 8)
> +                v >>= 8 - FRAC_BITS;
> +            if (add) {
> +                v += dst[x + src_x];
> +                v = (v + (1 << (FRAC_BITS - 1))) >> FRAC_BITS;
> +                if (v & (~255)) v= ~(v>>31);
> +                dst8[x + y*src_stride] = v;
> +            } else
> +                dst[x + src_x] -= v;
> +        }
> +    }
> +}
> +

putting this in snow_dwt may be convenient but it is not part of the dwt so
this feels semantically wrong

thx

[...]

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

There will always be a question for which you do not know the correct answer.

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 251 bytes --]

_______________________________________________
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-09-21  9:20 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-19 21:27 Andreas Rheinhardt
2022-09-19 21:28 ` [FFmpeg-devel] [PATCH 2/4] avcodec/tests/snowenc: Don't unnecessarily include snowenc.c Andreas Rheinhardt
2022-09-19 21:28 ` [FFmpeg-devel] [PATCH 3/4] avcodec/tests/snowenc: Don't use SnowContext Andreas Rheinhardt
2022-09-19 21:28 ` [FFmpeg-devel] [PATCH 4/4] avcodec/me_cmp: Don't access AVCodecContext directly in ff_me_cmp_init() Andreas Rheinhardt
2022-09-21  9:19 ` Michael Niedermayer [this message]
2022-09-21 11:00   ` [FFmpeg-devel] [PATCH 1/4] avcodec/snow: Move ff_snow_inner_add_yblock() to snow_dwt.c Andreas Rheinhardt
2022-09-21 16:48     ` Michael Niedermayer

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=20220921091954.GC6583@pb2 \
    --to=michael@niedermayer.cc \
    --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