forked from FFmpeg/FFmpeg
![sunyuechi](/assets/img/avatar_default.png)
k230 banana_f3 put_hevc_pel_pixels4_8_c: 61.6 ( 1.00x) 69.5 ( 1.00x) put_hevc_pel_pixels4_8_rvv_i32: 24.6 ( 2.50x) 28.0 ( 2.48x) put_hevc_pel_pixels8_8_c: 209.8 ( 1.00x) 215.5 ( 1.00x) put_hevc_pel_pixels8_8_rvv_i32: 52.6 ( 3.99x) 38.2 ( 5.64x) put_hevc_pel_pixels16_8_c: 839.4 ( 1.00x) 830.0 ( 1.00x) put_hevc_pel_pixels16_8_rvv_i32: 126.6 ( 6.63x) 90.5 ( 9.17x) put_hevc_pel_pixels32_8_c: 3246.6 ( 1.00x) 3246.7 ( 1.00x) put_hevc_pel_pixels32_8_rvv_i32: 311.6 (10.42x) 257.0 (12.63x) put_hevc_pel_pixels64_8_c: 12894.6 ( 1.00x) 12892.7 ( 1.00x) put_hevc_pel_pixels64_8_rvv_i32: 1135.8 (11.35x) 778.0 (16.57x)
67 lines
2.2 KiB
C
67 lines
2.2 KiB
C
/*
|
|
* Copyright (c) 2024 Institue of Software Chinese Academy of Sciences (ISCAS).
|
|
*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "libavutil/attributes.h"
|
|
#include "libavutil/cpu.h"
|
|
#include "libavutil/riscv/cpu.h"
|
|
|
|
#include "libavcodec/hevc/dsp.h"
|
|
#include "libavcodec/riscv/h26x/h2656dsp.h"
|
|
|
|
#define RVV_FNASSIGN(member, v, h, fn, ext) \
|
|
member[1][v][h] = ff_h2656_put_pixels_##8_##ext; \
|
|
member[3][v][h] = ff_h2656_put_pixels_##8_##ext; \
|
|
member[5][v][h] = ff_h2656_put_pixels_##8_##ext; \
|
|
member[7][v][h] = ff_h2656_put_pixels_##8_##ext; \
|
|
member[9][v][h] = ff_h2656_put_pixels_##8_##ext;
|
|
|
|
void ff_hevc_dsp_init_riscv(HEVCDSPContext *c, const int bit_depth)
|
|
{
|
|
#if HAVE_RVV
|
|
const int flags = av_get_cpu_flags();
|
|
int vlenb;
|
|
|
|
if (!(flags & AV_CPU_FLAG_RVV_I32) || !(flags & AV_CPU_FLAG_RVB))
|
|
return;
|
|
|
|
vlenb = ff_get_rv_vlenb();
|
|
if (vlenb >= 32) {
|
|
switch (bit_depth) {
|
|
case 8:
|
|
RVV_FNASSIGN(c->put_hevc_qpel, 0, 0, pel_pixels, rvv_256);
|
|
RVV_FNASSIGN(c->put_hevc_epel, 0, 0, pel_pixels, rvv_256);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
} else if (vlenb >= 16) {
|
|
switch (bit_depth) {
|
|
case 8:
|
|
RVV_FNASSIGN(c->put_hevc_qpel, 0, 0, pel_pixels, rvv_128);
|
|
RVV_FNASSIGN(c->put_hevc_epel, 0, 0, pel_pixels, rvv_128);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
#endif
|
|
}
|