1
0
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:
Carl Eugen Hoyos
2019-03-21 01:18:37 +01:00
parent 6dc1da416e
commit 4d8875ec23
214 changed files with 256 additions and 256 deletions

View File

@@ -23,7 +23,7 @@
#include "avformat.h"
#include "internal.h"
static int sdr2_probe(AVProbeData *p)
static int sdr2_probe(const AVProbeData *p)
{
if (AV_RL32(p->buf) != MKTAG('S', 'R', 'A', 1))
return 0;