mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-17 15:08:09 +08:00
lavf: Constify the probe function argument.
Reviewed-by: Lauri Kasanen Reviewed-by: Tomas Härdin
This commit is contained in:
@ -83,7 +83,7 @@ typedef struct APEContext {
|
||||
uint8_t *bittable;
|
||||
} APEContext;
|
||||
|
||||
static int ape_probe(AVProbeData * p)
|
||||
static int ape_probe(const AVProbeData * p)
|
||||
{
|
||||
int version = AV_RL16(p->buf+4);
|
||||
if (AV_RL32(p->buf) != MKTAG('M', 'A', 'C', ' '))
|
||||
|
Reference in New Issue
Block a user