[FFmpeg-devel] [PATCH] avcodec/tests/dct: add CONFIG_PRORES_DECODER guard
Peter Ross
pross at xvid.org
Tue Jun 10 01:02:24 EEST 2025
Only enable the proresdsp check when the prores decoder is enabled.
This fixes fate when configuring with --disable-everything
---
libavcodec/tests/dct.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/libavcodec/tests/dct.c b/libavcodec/tests/dct.c
index 76ad42bdfa..784b49276c 100644
--- a/libavcodec/tests/dct.c
+++ b/libavcodec/tests/dct.c
@@ -52,7 +52,9 @@
#include "libavcodec/faandct.h"
#include "libavcodec/faanidct.h"
#include "libavcodec/dctref.h"
+#if CONFIG_PRORES_DECODER
#include "libavcodec/proresdsp.c"
+#endif
struct algo {
const char *name;
@@ -71,6 +73,7 @@ static const struct algo fdct_tab[] = {
#endif /* CONFIG_FAANDCT */
};
+#if CONFIG_PRORES_DECODER
static void ff_prores_idct_wrap(int16_t *dst){
LOCAL_ALIGNED(16, int16_t, qmat, [64]);
int i;
@@ -83,6 +86,7 @@ static void ff_prores_idct_wrap(int16_t *dst){
dst[i] -= 512;
}
}
+#endif
static const struct algo idct_tab[] = {
{ "REF-DBL", ff_ref_idct, FF_IDCT_PERM_NONE },
@@ -90,7 +94,9 @@ static const struct algo idct_tab[] = {
{ "SIMPLE-C", ff_simple_idct_int16_8bit, FF_IDCT_PERM_NONE },
{ "SIMPLE-C10", ff_simple_idct_int16_10bit, FF_IDCT_PERM_NONE },
{ "SIMPLE-C12", ff_simple_idct_int16_12bit, FF_IDCT_PERM_NONE, 0, 1 },
+#if CONFIG_PRORES_DECODER
{ "PR-C", ff_prores_idct_wrap, FF_IDCT_PERM_NONE, 0, 1 },
+#endif
#if CONFIG_FAANIDCT
{ "FAANI", ff_faanidct, FF_IDCT_PERM_NONE },
#endif /* CONFIG_FAANIDCT */
--
2.47.2
-- Peter
(A907 E02F A6E5 0CD2 34CD 20D2 6760 79C5 AC40 DD6B)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <https://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20250610/04fdc1ae/attachment.sig>
More information about the ffmpeg-devel
mailing list