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:
@ -47,7 +47,7 @@ typedef enum {
|
||||
NUV_MYTHEXT = 'X'
|
||||
} nuv_frametype;
|
||||
|
||||
static int nuv_probe(AVProbeData *p)
|
||||
static int nuv_probe(const AVProbeData *p)
|
||||
{
|
||||
if (!memcmp(p->buf, "NuppelVideo", 12))
|
||||
return AVPROBE_SCORE_MAX;
|
||||
|
Reference in New Issue
Block a user