mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-12 01:40:04 +01:00
lavf: Constify the probe function argument.
Reviewed-by: Lauri Kasanen Reviewed-by: Tomas Härdin
This commit is contained in:
@@ -62,7 +62,7 @@ typedef struct SIFFContext {
|
||||
uint8_t gmc[4];
|
||||
} SIFFContext;
|
||||
|
||||
static int siff_probe(AVProbeData *p)
|
||||
static int siff_probe(const AVProbeData *p)
|
||||
{
|
||||
uint32_t tag = AV_RL32(p->buf + 8);
|
||||
/* check file header */
|
||||
|
||||
Reference in New Issue
Block a user