parent
9078dc0c52
commit
89c10d8d20
5 changed files with 81 additions and 0 deletions
@ -0,0 +1,38 @@ |
||||
/*
|
||||
* Copyright © 2023 Rémi Denis-Courmont. |
||||
* |
||||
* 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 <stdint.h> |
||||
|
||||
#include "config.h" |
||||
#include "libavutil/attributes.h" |
||||
#include "libavutil/cpu.h" |
||||
#include "libavcodec/ac3dsp.h" |
||||
|
||||
void ff_extract_exponents_rvb(uint8_t *exp, int32_t *coef, int nb_coefs); |
||||
|
||||
av_cold void ff_ac3dsp_init_riscv(AC3DSPContext *c) |
||||
{ |
||||
int flags = av_get_cpu_flags(); |
||||
|
||||
if (flags & AV_CPU_FLAG_RVB_ADDR) { |
||||
if (flags & AV_CPU_FLAG_RVB_BASIC) |
||||
c->extract_exponents = ff_extract_exponents_rvb; |
||||
} |
||||
} |
@ -0,0 +1,38 @@ |
||||
/* |
||||
* Copyright © 2023 Rémi Denis-Courmont. |
||||
* |
||||
* 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/riscv/asm.S" |
||||
|
||||
func ff_extract_exponents_rvb, zbb |
||||
1: |
||||
lw t0, (a1) |
||||
addi a0, a0, 1 |
||||
neg t1, t0 |
||||
addi a1, a1, 4 |
||||
max t0, t0, t1 |
||||
addi a2, a2, -1 |
||||
clz t0, t0 |
||||
addi t0, t0, 24 - __riscv_xlen |
||||
sb t0, -1(a0) |
||||
bgtz a2, 1b |
||||
|
||||
ret |
||||
endfunc |
Loading…
Reference in new issue