From 4d8875ec23cf299277a0f028ea2ac99eb6f603c9 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Thu, 21 Mar 2019 01:18:37 +0100 Subject: lavf: Constify the probe function argument. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Lauri Kasanen Reviewed-by: Tomas Härdin --- libavformat/xmv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/xmv.c') diff --git a/libavformat/xmv.c b/libavformat/xmv.c index b974e5a6e6..29a32f2547 100644 --- a/libavformat/xmv.c +++ b/libavformat/xmv.c @@ -115,7 +115,7 @@ typedef struct XMVDemuxContext { XMVAudioPacket *audio; ///< The audio packets contained in each packet. } XMVDemuxContext; -static int xmv_probe(AVProbeData *p) +static int xmv_probe(const AVProbeData *p) { uint32_t file_version; -- cgit v1.2.3