diff options
author | RĂ©mi Denis-Courmont <remi@remlab.net> | 2022-10-04 20:49:13 +0300 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2022-10-05 06:54:56 +0200 |
commit | 3ba5579e55569fd3a9bb080820c57307ff8fdff5 (patch) | |
tree | 46d64af0066253bd35a9226ea6e52ea520f333ce /libavutil | |
parent | f0d1637c11c91b4729d4385a4bf9c61c213d3173 (diff) | |
download | ffmpeg-3ba5579e55569fd3a9bb080820c57307ff8fdff5.tar.gz |
riscv: remove unnecessary #include's
Pointed out by Andreas Rheinhardt.
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/riscv/asm.S | 2 | ||||
-rw-r--r-- | libavutil/riscv/fixed_dsp_rvv.S | 1 | ||||
-rw-r--r-- | libavutil/riscv/float_dsp_rvv.S | 1 |
3 files changed, 0 insertions, 4 deletions
diff --git a/libavutil/riscv/asm.S b/libavutil/riscv/asm.S index de5e1ad0a6..ffa0bd9068 100644 --- a/libavutil/riscv/asm.S +++ b/libavutil/riscv/asm.S @@ -19,8 +19,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "config.h" - #if defined (__riscv_float_abi_soft) #define NOHWF #define NOHWD diff --git a/libavutil/riscv/fixed_dsp_rvv.S b/libavutil/riscv/fixed_dsp_rvv.S index 0e78734b4c..a91316e1da 100644 --- a/libavutil/riscv/fixed_dsp_rvv.S +++ b/libavutil/riscv/fixed_dsp_rvv.S @@ -18,7 +18,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "config.h" #include "asm.S" // (a0) = (a0) + (a1), (a1) = (a0) - (a1) [0..a2-1] diff --git a/libavutil/riscv/float_dsp_rvv.S b/libavutil/riscv/float_dsp_rvv.S index ab2e0c42d7..2bf8c6ee96 100644 --- a/libavutil/riscv/float_dsp_rvv.S +++ b/libavutil/riscv/float_dsp_rvv.S @@ -18,7 +18,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "config.h" #include "asm.S" // (a0) = (a1) * (a2) [0..a3-1] |