summaryrefslogtreecommitdiff
path: root/tests/checkasm/idctdsp.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-08 13:41:33 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-11 00:26:34 +0200
commita84fe06112af4929a4f3d993373b4f3cf2725f9a (patch)
tree9de177c13e6d2c5101c6264017265c0e24e7ead8 /tests/checkasm/idctdsp.c
parent7b0b9a25ed11625ae75f1fa47db41744578675fe (diff)
avcodec/idctdsp: Avoid inclusion of avcodec.h
Not every user of idctdsp.h wants to initialize an IDCTDSPContext; e.g. the proresdsp only uses ff_init_scantable_permutation() and the IDCT permutation enum; similarly for cavsdsp and wmv2dsp. Using a forward declaration here avoids an avcodec.h dependency in the relevant files. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'tests/checkasm/idctdsp.c')
-rw-r--r--tests/checkasm/idctdsp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/checkasm/idctdsp.c b/tests/checkasm/idctdsp.c
index c06e607d99..05aeddea45 100644
--- a/tests/checkasm/idctdsp.c
+++ b/tests/checkasm/idctdsp.c
@@ -22,6 +22,7 @@
#include "checkasm.h"
+#include "libavcodec/avcodec.h"
#include "libavcodec/idctdsp.h"
#include "libavutil/common.h"