diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-20 02:43:02 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-21 20:24:22 +0200 |
commit | 57f3ca20dcb104665c3c5dce04829574dc8d044f (patch) | |
tree | b3505d85fec6060bfa9c40ed72434c9ff97e7b8b /libavcodec/cavsdsp.h | |
parent | 6a288ada55c0e5a2a74e1ea2b5666412282cb3db (diff) | |
download | ffmpeg-57f3ca20dcb104665c3c5dce04829574dc8d044f.tar.gz |
avcodec/cavsdsp: Remove unused function parameter
Reviewed-by: RĂ©mi Denis-Courmont <remi@remlab.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/cavsdsp.h')
-rw-r--r-- | libavcodec/cavsdsp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/cavsdsp.h b/libavcodec/cavsdsp.h index 9ccaa0addd..2cd9298963 100644 --- a/libavcodec/cavsdsp.h +++ b/libavcodec/cavsdsp.h @@ -22,9 +22,9 @@ #ifndef AVCODEC_CAVSDSP_H #define AVCODEC_CAVSDSP_H +#include <stddef.h> #include <stdint.h> -#include "avcodec.h" #include "qpeldsp.h" typedef struct CAVSDSPContext { @@ -38,7 +38,7 @@ typedef struct CAVSDSPContext { int idct_perm; } CAVSDSPContext; -void ff_cavsdsp_init(CAVSDSPContext* c, AVCodecContext *avctx); -void ff_cavsdsp_init_x86(CAVSDSPContext* c, AVCodecContext *avctx); +void ff_cavsdsp_init(CAVSDSPContext* c); +void ff_cavsdsp_init_x86(CAVSDSPContext* c); #endif /* AVCODEC_CAVSDSP_H */ |