diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-28 22:12:57 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-10-01 01:02:53 +0200 |
commit | 145db38f9b0f05b571fa25334ffffa841fb4ed5e (patch) | |
tree | cba217a73337a04652cc4ab8ff7660a7b6b26e77 /libavcodec/bgmc.h | |
parent | 7a9bc091760b983bb072b42bc806d19e2e632b70 (diff) | |
download | ffmpeg-145db38f9b0f05b571fa25334ffffa841fb4ed5e.tar.gz |
avcodec/bgmc: Use void* instead of AVCodecContext* as logctx
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/bgmc.h')
-rw-r--r-- | libavcodec/bgmc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/bgmc.h b/libavcodec/bgmc.h index 466df31a2e..81771d4aef 100644 --- a/libavcodec/bgmc.h +++ b/libavcodec/bgmc.h @@ -30,11 +30,10 @@ #define AVCODEC_BGMC_H -#include "avcodec.h" #include "get_bits.h" -int ff_bgmc_init(AVCodecContext *avctx, uint8_t **cf_lut, int **cf_lut_status); +int ff_bgmc_init(void *logctx, uint8_t **cf_lut, int **cf_lut_status); void ff_bgmc_end(uint8_t **cf_lut, int **cf_lut_status); |