mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
avcodec/h264_slice: Silence pointer type warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9ea256814d
commit
29b0923324
1 changed files with 1 additions and 1 deletions
|
|
@ -383,7 +383,7 @@ void ff_h264_init_dequant_tables(H264Context *h)
|
|||
}
|
||||
}
|
||||
|
||||
#define IN_RANGE(a, b, size) (((a) >= (b)) && ((a) < ((b) + (size))))
|
||||
#define IN_RANGE(a, b, size) (((void*)(a) >= (void*)(b)) && ((void*)(a) < (void*)((b) + (size))))
|
||||
|
||||
#define REBASE_PICTURE(pic, new_ctx, old_ctx) \
|
||||
(((pic) && (pic) >= (old_ctx)->DPB && \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue