[FFmpeg-cvslog] avcodec/vvc/vvcdsp: Remove pointless wrappers
Andreas Rheinhardt
git at videolan.org
Wed Feb 21 02:45:08 EET 2024
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Sun Feb 18 19:25:58 2024 +0100| [48612de63c2a36f6a9cad4bcd41e907ab9ec099b] | committer: Andreas Rheinhardt
avcodec/vvc/vvcdsp: Remove pointless wrappers
Reviewed-by: Nuo Mi <nuomi2021 at gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=48612de63c2a36f6a9cad4bcd41e907ab9ec099b
---
libavcodec/vvc/vvcdsp.c | 18 ------------------
libavcodec/vvc/vvcdsp_template.c | 2 +-
2 files changed, 1 insertion(+), 19 deletions(-)
diff --git a/libavcodec/vvc/vvcdsp.c b/libavcodec/vvc/vvcdsp.c
index 214dc4e6c0..d63b9bc9b3 100644
--- a/libavcodec/vvc/vvcdsp.c
+++ b/libavcodec/vvc/vvcdsp.c
@@ -64,24 +64,6 @@ static int vvc_sad(const int16_t *src0, const int16_t *src1, int dx, int dy,
return sad;
}
-#define itx_fn(type, s) \
-static void itx_##type##_##s(int *coeffs, ptrdiff_t step, size_t nz) \
-{ \
- ff_vvc_inv_##type##_##s(coeffs, step, nz); \
-}
-
-#define itx_fn_common(type) \
- itx_fn(type, 4); \
- itx_fn(type, 8); \
- itx_fn(type, 16); \
- itx_fn(type, 32); \
-
-itx_fn_common(dct2);
-itx_fn_common(dst7);
-itx_fn_common(dct8);
-itx_fn(dct2, 2);
-itx_fn(dct2, 64);
-
typedef struct IntraEdgeParams {
uint8_t* top;
uint8_t* left;
diff --git a/libavcodec/vvc/vvcdsp_template.c b/libavcodec/vvc/vvcdsp_template.c
index f92c266478..33815d6765 100644
--- a/libavcodec/vvc/vvcdsp_template.c
+++ b/libavcodec/vvc/vvcdsp_template.c
@@ -97,7 +97,7 @@ static void FUNC(transform_bdpcm)(int *coeffs, const int width, const int height
static void FUNC(ff_vvc_itx_dsp_init)(VVCItxDSPContext *const itx)
{
#define VVC_ITX(TYPE, type, s) \
- itx->itx[TYPE][TX_SIZE_##s] = itx_##type##_##s; \
+ itx->itx[TYPE][TX_SIZE_##s] = ff_vvc_inv_##type##_##s; \
#define VVC_ITX_COMMON(TYPE, type) \
VVC_ITX(TYPE, type, 4); \
More information about the ffmpeg-cvslog
mailing list