You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
lavf: Constify the probe function argument.
Reviewed-by: Lauri Kasanen Reviewed-by: Tomas Härdin
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
#include "avio.h"
|
||||
#include "internal.h"
|
||||
|
||||
static int fsb_probe(AVProbeData *p)
|
||||
static int fsb_probe(const AVProbeData *p)
|
||||
{
|
||||
if (memcmp(p->buf, "FSB", 3) || p->buf[3] - '0' < 1 || p->buf[3] - '0' > 5)
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user