[FFmpeg-cvslog] avcodec/hpeldsp: Remove duplicate pel functions

Andreas Rheinhardt git at videolan.org
Mon Jun 2 14:53:42 EEST 2025


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Fri May 30 12:40:16 2025 +0200| [6d45668801db9cd22b15e9d947738b25346a691f] | committer: Andreas Rheinhardt

avcodec/hpeldsp: Remove duplicate pel functions

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6d45668801db9cd22b15e9d947738b25346a691f
---

 libavcodec/hpeldsp.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/libavcodec/hpeldsp.c b/libavcodec/hpeldsp.c
index 80494c9749..db0e02ee93 100644
--- a/libavcodec/hpeldsp.c
+++ b/libavcodec/hpeldsp.c
@@ -314,9 +314,6 @@ CALL_2X_PIXELS(OPNAME ## _pixels16_y2_8_c,                              \
 CALL_2X_PIXELS(OPNAME ## _pixels16_xy2_8_c,                             \
                OPNAME ## _pixels8_xy2_8_c,                              \
                8)                                                       \
-CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_8_c,                          \
-               OPNAME ## _pixels8_8_c,                                  \
-               8)                                                       \
 CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_x2_8_c,                       \
                OPNAME ## _no_rnd_pixels8_x2_8_c,                        \
                8)                                                       \
@@ -330,6 +327,8 @@ CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_xy2_8_c,                      \
 #define op_avg(a, b) a = rnd_avg32(a, b)
 #define op_put(a, b) a = b
 #define put_no_rnd_pixels8_8_c put_pixels8_8_c
+#define put_no_rnd_pixels16_8_c put_pixels16_8_c
+#define avg_no_rnd_pixels16_8_c avg_pixels16_8_c
 PIXOP2(avg, op_avg)
 PIXOP2(put, op_put)
 #undef op_avg



More information about the ffmpeg-cvslog mailing list