mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-21 06:16:59 +00:00
avcodec/me_cmp: Constify ff_set_cmp()
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
bbd355355d
commit
1367ef198a
@ -473,7 +473,7 @@ static int zero_cmp(MpegEncContext *s, const uint8_t *a, const uint8_t *b,
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ff_set_cmp(MECmpContext *c, me_cmp_func *cmp, int type)
|
||||
int ff_set_cmp(const MECmpContext *c, me_cmp_func *cmp, int type)
|
||||
{
|
||||
int ret = 0;
|
||||
int i;
|
||||
|
@ -90,7 +90,7 @@ void ff_me_cmp_init_riscv(MECmpContext *c, AVCodecContext *avctx);
|
||||
void ff_me_cmp_init_x86(MECmpContext *c, AVCodecContext *avctx);
|
||||
void ff_me_cmp_init_mips(MECmpContext *c, AVCodecContext *avctx);
|
||||
|
||||
int ff_set_cmp(MECmpContext *c, me_cmp_func *cmp, int type);
|
||||
int ff_set_cmp(const MECmpContext *c, me_cmp_func *cmp, int type);
|
||||
|
||||
void ff_dsputil_init_dwt(MECmpContext *c);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user