]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/dsfdec.c
avutil/dynarry.h: fix comment grammar mistakes of FF_DYNARRAY_ADD
[ffmpeg] / libavformat / dsfdec.c
index 5e06fd63a587d6fa2e921bded260cdfbb65e2350..afb24634b28deff65b7589a907b7dc006307447c 100644 (file)
@@ -30,7 +30,7 @@ typedef struct {
     uint64_t data_size;
 } DSFContext;
 
-static int dsf_probe(AVProbeData *p)
+static int dsf_probe(const AVProbeData *p)
 {
     if (p->buf_size < 12 || memcmp(p->buf, "DSD ", 4) || AV_RL64(p->buf + 4) != 28)
         return 0;