From: "Rémi Denis-Courmont" <remi@remlab.net> To: ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] [PATCH 2/3] sws/input: R-V V rgb24ToUV and bgr24ToUV Date: Wed, 5 Jun 2024 19:36:36 +0300 Message-ID: <20240605163638.10586-2-remi@remlab.net> (raw) In-Reply-To: <20240605163638.10586-1-remi@remlab.net> T-Head C908: rgb24_to_uv_8_c: 2.7 rgb24_to_uv_8_rvv_i32: 3.2 rgb24_to_uv_128_c: 41.0 rgb24_to_uv_128_rvv_i32: 12.7 rgb24_to_uv_1080_c: 342.5 rgb24_to_uv_1080_rvv_i32: 105.7 rgb24_to_uv_1280_c: 406.0 rgb24_to_uv_1280_rvv_i32: 124.2 rgb24_to_uv_1920_c: 626.0 rgb24_to_uv_1920_rvv_i32: 186.0 SpacemiT X60: rgb24_to_uv_8_c: 2.5 rgb24_to_uv_8_rvv_i32: 3.0 rgb24_to_uv_128_c: 36.5 rgb24_to_uv_128_rvv_i32: 5.7 rgb24_to_uv_1080_c: 304.2 rgb24_to_uv_1080_rvv_i32: 49.0 rgb24_to_uv_1280_c: 360.5 rgb24_to_uv_1280_rvv_i32: 57.5 rgb24_to_uv_1920_c: 540.7 rgb24_to_uv_1920_rvv_i32: 86.2 --- libswscale/riscv/input.S | 46 ++++++++++++++++++++++++++++++++++++++ libswscale/riscv/swscale.c | 8 +++++++ 2 files changed, 54 insertions(+) diff --git a/libswscale/riscv/input.S b/libswscale/riscv/input.S index 323f650bc9..3392f189ca 100644 --- a/libswscale/riscv/input.S +++ b/libswscale/riscv/input.S @@ -53,3 +53,49 @@ func ff_rgb24ToY_rvv, zve32x ret endfunc + +func ff_bgr24ToUV_rvv, zve32x + lw t1, 20(a6) # BU + lw t4, 32(a6) # BV + lw t3, 12(a6) # RU + lw t6, 24(a6) # RV + j 1f +endfunc + +func ff_rgb24ToUV_rvv, zve32x + lw t1, 12(a6) # RU + lw t4, 24(a6) # RV + lw t3, 20(a6) # BU + lw t6, 32(a6) # BV +1: + lw t2, 16(a6) # GU + lw t5, 28(a6) # GV + li a7, (256 << (15 - 1)) + (1 << (15 - 7)) +2: + vsetvli t0, a5, e32, m8, ta, ma + vlseg3e8.v v0, (a3) + sub a5, a5, t0 + vzext.vf4 v16, v0 + sh1add a6, t0, t0 + vzext.vf4 v24, v2 + vmul.vx v8, v16, t1 + add a3, a6, a3 + vmul.vx v16, v16, t4 + vmacc.vx v8, t2, v24 + vmacc.vx v16, t5, v24 + vzext.vf4 v24, v4 + vadd.vx v8, v8, a7 + vadd.vx v16, v16, a7 + vmacc.vx v8, t3, v24 + vmacc.vx v16, t6, v24 + vsetvli zero, zero, e16, m4, ta, ma + vnsra.wi v0, v8, 15 - 6 + vnsra.wi v4, v16, 15 - 6 + vse16.v v0, (a0) + sh1add a0, t0, a0 + vse16.v v4, (a1) + sh1add a1, t0, a1 + bnez a5, 2b + + ret +endfunc diff --git a/libswscale/riscv/swscale.c b/libswscale/riscv/swscale.c index 187b3fce58..b3552976c6 100644 --- a/libswscale/riscv/swscale.c +++ b/libswscale/riscv/swscale.c @@ -23,8 +23,12 @@ void ff_bgr24ToY_rvv(uint8_t *dst, const uint8_t *src, const uint8_t *, const uint8_t *, int width, uint32_t *coeffs, void *); +void ff_bgr24ToUV_rvv(uint8_t *, uint8_t *, const uint8_t *, const uint8_t *, + const uint8_t *, int width, uint32_t *coeffs, void *); void ff_rgb24ToY_rvv(uint8_t *dst, const uint8_t *src, const uint8_t *, const uint8_t *, int width, uint32_t *coeffs, void *); +void ff_rgb24ToUV_rvv(uint8_t *, uint8_t *, const uint8_t *, const uint8_t *, + const uint8_t *, int width, uint32_t *coeffs, void *); av_cold void ff_sws_init_swscale_riscv(SwsContext *c) { @@ -35,10 +39,14 @@ av_cold void ff_sws_init_swscale_riscv(SwsContext *c) switch (c->srcFormat) { case AV_PIX_FMT_BGR24: c->lumToYV12 = ff_bgr24ToY_rvv; + if (!c->chrSrcHSubSample) + c->chrToYV12 = ff_bgr24ToUV_rvv; break; case AV_PIX_FMT_RGB24: c->lumToYV12 = ff_rgb24ToY_rvv; + if (!c->chrSrcHSubSample) + c->chrToYV12 = ff_rgb24ToUV_rvv; break; } } -- 2.45.1 _______________________________________________ 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-06-05 16:36 UTC|newest] Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-06-05 16:36 [FFmpeg-devel] [PATCHv3 1/3] sws/input: R-V V rgb24ToY & bgr24ToY Rémi Denis-Courmont 2024-06-05 16:36 ` Rémi Denis-Courmont [this message] 2024-06-05 16:36 ` [FFmpeg-devel] [PATCH 3/3] sws/input: R-V V rgb24ToUV_half and bgr24ToUV_half Rémi Denis-Courmont
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=20240605163638.10586-2-remi@remlab.net \ --to=remi@remlab.net \ --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