diff mbox series

[FFmpeg-devel,4/9] avfilter/bwdifdsp: Avoid including ff_bwdif_filter_line3_c()

Message ID AS8P250MB0744A0C536AA21C6129DD1F28FFCA@AS8P250MB0744.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit 97cd698ee408371c97960b384256125d88984b63
Headers show
Series [FFmpeg-devel,1/9] avfilter/bwdif: Add proper BWDIFDSPContext | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt Sept. 25, 2023, 6:04 p.m. UTC
This function is used by the AARCH64 code to filter a few
remaining lines in case the dimensions are not suitably
aligned; it is furthermore also used by checkasm to actually
test the AARCH64 code against. But it is normally not used
and this patch therefore moves it in bwdifdsp.h as a static
inline function so that it can be avoided if possible
or inlined where necessary.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavfilter/bwdifdsp.c | 25 -------------------------
 libavfilter/bwdifdsp.h | 30 +++++++++++++++++++++++++++++-
 2 files changed, 29 insertions(+), 26 deletions(-)
diff mbox series

Patch

diff --git a/libavfilter/bwdifdsp.c b/libavfilter/bwdifdsp.c
index 65bdbdc053..e87fe414e0 100644
--- a/libavfilter/bwdifdsp.c
+++ b/libavfilter/bwdifdsp.c
@@ -143,31 +143,6 @@  void ff_bwdif_filter_line_c(void *dst1, const void *prev1, const void *cur1, con
     FILTER2()
 }
 
-#define NEXT_LINE()\
-    dst += d_stride; \
-    prev += prefs; \
-    cur  += prefs; \
-    next += prefs;
-
-void ff_bwdif_filter_line3_c(void * dst1, int d_stride,
-                             const void * prev1, const void * cur1, const void * next1, int s_stride,
-                             int w, int parity, int clip_max)
-{
-    const int prefs = s_stride;
-    uint8_t * dst  = dst1;
-    const uint8_t * prev = prev1;
-    const uint8_t * cur  = cur1;
-    const uint8_t * next = next1;
-
-    ff_bwdif_filter_line_c(dst, prev, cur, next, w,
-                           prefs, -prefs, prefs * 2, - prefs * 2, prefs * 3, -prefs * 3, prefs * 4, -prefs * 4, parity, clip_max);
-    NEXT_LINE();
-    memcpy(dst, cur, w);
-    NEXT_LINE();
-    ff_bwdif_filter_line_c(dst, prev, cur, next, w,
-                           prefs, -prefs, prefs * 2, - prefs * 2, prefs * 3, -prefs * 3, prefs * 4, -prefs * 4, parity, clip_max);
-}
-
 void ff_bwdif_filter_edge_c(void *dst1, const void *prev1, const void *cur1, const void *next1,
                             int w, int prefs, int mrefs, int prefs2, int mrefs2,
                             int parity, int clip_max, int spat)
diff --git a/libavfilter/bwdifdsp.h b/libavfilter/bwdifdsp.h
index 4bf595355c..4a350e5ccc 100644
--- a/libavfilter/bwdifdsp.h
+++ b/libavfilter/bwdifdsp.h
@@ -19,6 +19,9 @@ 
 #ifndef AVFILTER_BWDIFDSP_H
 #define AVFILTER_BWDIFDSP_H
 
+#include <stdint.h>
+#include <string.h>
+
 typedef struct BWDIFDSPContext {
     void (*filter_intra)(void *dst1, const void *cur1, int w, int prefs, int mrefs,
                          int prefs3, int mrefs3, int parity, int clip_max);
@@ -50,8 +53,33 @@  void ff_bwdif_filter_line_c(void *dst1, const void *prev1, const void *cur1, con
                             int prefs3, int mrefs3, int prefs4, int mrefs4,
                             int parity, int clip_max);
 
+static inline
 void ff_bwdif_filter_line3_c(void * dst1, int d_stride,
                              const void * prev1, const void * cur1, const void * next1, int s_stride,
-                             int w, int parity, int clip_max);
+                             int w, int parity, int clip_max)
+{
+    const int prefs = s_stride;
+    uint8_t * dst  = dst1;
+    const uint8_t * prev = prev1;
+    const uint8_t * cur  = cur1;
+    const uint8_t * next = next1;
+
+    ff_bwdif_filter_line_c(dst, prev, cur, next, w,
+                           prefs, -prefs, prefs * 2, - prefs * 2, prefs * 3, -prefs * 3, prefs * 4, -prefs * 4, parity, clip_max);
+#define NEXT_LINE()\
+    dst += d_stride; \
+    prev += prefs; \
+    cur  += prefs; \
+    next += prefs;
+
+    NEXT_LINE();
+    memcpy(dst, cur, w);
+    NEXT_LINE();
+#undef NEXT_LINE
+    ff_bwdif_filter_line_c(dst, prev, cur, next, w,
+                           prefs, -prefs, prefs * 2, - prefs * 2, prefs * 3, -prefs * 3, prefs * 4, -prefs * 4, parity, clip_max);
+}
+
+
 
 #endif /* AVFILTER_BWDIFDSP_H */