X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fepafdec.c;h=8b94278c01ef1df93e81421615cb34b773fad751;hb=29f5c1e51b0d156f4650b96ab56c07727fe9a9b7;hp=0cd9627a4b220b8baa3369574b945183032e3190;hpb=f4cf6ba8c9646814af842a99335c6ee312ded299;p=ffmpeg diff --git a/libavformat/epafdec.c b/libavformat/epafdec.c index 0cd9627a4b2..8b94278c01e 100644 --- a/libavformat/epafdec.c +++ b/libavformat/epafdec.c @@ -25,7 +25,7 @@ #include "internal.h" #include "pcm.h" -static int epaf_probe(AVProbeData *p) +static int epaf_probe(const AVProbeData *p) { if (((AV_RL32(p->buf) == MKTAG('f','a','p',' ') && AV_RL32(p->buf + 8) == 1) || @@ -93,7 +93,7 @@ static int epaf_read_header(AVFormatContext *s) return 0; } -AVInputFormat ff_epaf_demuxer = { +const AVInputFormat ff_epaf_demuxer = { .name = "epaf", .long_name = NULL_IF_CONFIG_SMALL("Ensoniq Paris Audio File"), .read_probe = epaf_probe,