aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNuo Mi <nuomi2021@gmail.com>2024-12-21 18:01:42 +0800
committerNuo Mi <nuomi2021@gmail.com>2024-12-22 21:00:06 +0800
commit8d27256a747fdd9eda41c480aa1eb7a065b88286 (patch)
treea1ef17059b0e330923eb40e63656864f99561c81
parent350ebef1128f111d4c5b9183e733daffc49570dd (diff)
downloadffmpeg-8d27256a747fdd9eda41c480aa1eb7a065b88286.tar.gz
avcodec/vvcdec: remove vvc prefix for x86 and riscv
-rw-r--r--libavcodec/riscv/vvc/Makefile6
-rw-r--r--libavcodec/riscv/vvc/dsp_init.c (renamed from libavcodec/riscv/vvc/vvcdsp_init.c)0
-rw-r--r--libavcodec/riscv/vvc/mc_rvv.S (renamed from libavcodec/riscv/vvc/vvc_mc_rvv.S)0
-rw-r--r--libavcodec/riscv/vvc/sad_rvv.S (renamed from libavcodec/riscv/vvc/vvc_sad_rvv.S)0
-rw-r--r--libavcodec/x86/vvc/Makefile12
-rw-r--r--libavcodec/x86/vvc/alf.asm (renamed from libavcodec/x86/vvc/vvc_alf.asm)0
-rw-r--r--libavcodec/x86/vvc/dmvr.asm (renamed from libavcodec/x86/vvc/vvc_dmvr.asm)0
-rw-r--r--libavcodec/x86/vvc/dsp_init.c (renamed from libavcodec/x86/vvc/vvcdsp_init.c)0
-rw-r--r--libavcodec/x86/vvc/mc.asm (renamed from libavcodec/x86/vvc/vvc_mc.asm)0
-rw-r--r--libavcodec/x86/vvc/of.asm (renamed from libavcodec/x86/vvc/vvc_of.asm)0
-rw-r--r--libavcodec/x86/vvc/sad.asm (renamed from libavcodec/x86/vvc/vvc_sad.asm)0
11 files changed, 9 insertions, 9 deletions
diff --git a/libavcodec/riscv/vvc/Makefile b/libavcodec/riscv/vvc/Makefile
index 6b9c618b33..e17ab93ab8 100644
--- a/libavcodec/riscv/vvc/Makefile
+++ b/libavcodec/riscv/vvc/Makefile
@@ -1,3 +1,3 @@
-OBJS-$(CONFIG_VVC_DECODER) += riscv/vvc/vvcdsp_init.o
-RVV-OBJS-$(CONFIG_VVC_DECODER) += riscv/vvc/vvc_mc_rvv.o \
- riscv/vvc/vvc_sad_rvv.o
+OBJS-$(CONFIG_VVC_DECODER) += riscv/vvc/dsp_init.o
+RVV-OBJS-$(CONFIG_VVC_DECODER) += riscv/vvc/mc_rvv.o \
+ riscv/vvc/sad_rvv.o
diff --git a/libavcodec/riscv/vvc/vvcdsp_init.c b/libavcodec/riscv/vvc/dsp_init.c
index 1b228cc9f5..1b228cc9f5 100644
--- a/libavcodec/riscv/vvc/vvcdsp_init.c
+++ b/libavcodec/riscv/vvc/dsp_init.c
diff --git a/libavcodec/riscv/vvc/vvc_mc_rvv.S b/libavcodec/riscv/vvc/mc_rvv.S
index 329fc0648c..329fc0648c 100644
--- a/libavcodec/riscv/vvc/vvc_mc_rvv.S
+++ b/libavcodec/riscv/vvc/mc_rvv.S
diff --git a/libavcodec/riscv/vvc/vvc_sad_rvv.S b/libavcodec/riscv/vvc/sad_rvv.S
index 341167be1f..341167be1f 100644
--- a/libavcodec/riscv/vvc/vvc_sad_rvv.S
+++ b/libavcodec/riscv/vvc/sad_rvv.S
diff --git a/libavcodec/x86/vvc/Makefile b/libavcodec/x86/vvc/Makefile
index aa59aa59cf..86a6c8ba7c 100644
--- a/libavcodec/x86/vvc/Makefile
+++ b/libavcodec/x86/vvc/Makefile
@@ -1,11 +1,11 @@
clean::
$(RM) $(CLEANSUFFIXES:%=libavcodec/x86/vvc/%) $(CLEANSUFFIXES:%=libavcodec/x86/h26x/%)
-OBJS-$(CONFIG_VVC_DECODER) += x86/vvc/vvcdsp_init.o \
+OBJS-$(CONFIG_VVC_DECODER) += x86/vvc/dsp_init.o \
x86/h26x/h2656dsp.o
-X86ASM-OBJS-$(CONFIG_VVC_DECODER) += x86/vvc/vvc_alf.o \
- x86/vvc/vvc_dmvr.o \
- x86/vvc/vvc_mc.o \
- x86/vvc/vvc_of.o \
- x86/vvc/vvc_sad.o \
+X86ASM-OBJS-$(CONFIG_VVC_DECODER) += x86/vvc/alf.o \
+ x86/vvc/dmvr.o \
+ x86/vvc/mc.o \
+ x86/vvc/of.o \
+ x86/vvc/sad.o \
x86/h26x/h2656_inter.o
diff --git a/libavcodec/x86/vvc/vvc_alf.asm b/libavcodec/x86/vvc/alf.asm
index f69a69f05f..f69a69f05f 100644
--- a/libavcodec/x86/vvc/vvc_alf.asm
+++ b/libavcodec/x86/vvc/alf.asm
diff --git a/libavcodec/x86/vvc/vvc_dmvr.asm b/libavcodec/x86/vvc/dmvr.asm
index 4c971f970b..4c971f970b 100644
--- a/libavcodec/x86/vvc/vvc_dmvr.asm
+++ b/libavcodec/x86/vvc/dmvr.asm
diff --git a/libavcodec/x86/vvc/vvcdsp_init.c b/libavcodec/x86/vvc/dsp_init.c
index 31bb80e109..31bb80e109 100644
--- a/libavcodec/x86/vvc/vvcdsp_init.c
+++ b/libavcodec/x86/vvc/dsp_init.c
diff --git a/libavcodec/x86/vvc/vvc_mc.asm b/libavcodec/x86/vvc/mc.asm
index 30aa97c65a..30aa97c65a 100644
--- a/libavcodec/x86/vvc/vvc_mc.asm
+++ b/libavcodec/x86/vvc/mc.asm
diff --git a/libavcodec/x86/vvc/vvc_of.asm b/libavcodec/x86/vvc/of.asm
index 5893bfb23a..5893bfb23a 100644
--- a/libavcodec/x86/vvc/vvc_of.asm
+++ b/libavcodec/x86/vvc/of.asm
diff --git a/libavcodec/x86/vvc/vvc_sad.asm b/libavcodec/x86/vvc/sad.asm
index 982951a370..982951a370 100644
--- a/libavcodec/x86/vvc/vvc_sad.asm
+++ b/libavcodec/x86/vvc/sad.asm