mirror of https://git.ffmpeg.org/ffmpeg.git
lavf/adp: Fix the probe function on systems with signed char.
This commit is contained in:
parent
c585b4e9f0
commit
14b1553939
|
@ -27,7 +27,7 @@
|
||||||
static int adp_probe(AVProbeData *p)
|
static int adp_probe(AVProbeData *p)
|
||||||
{
|
{
|
||||||
int i, changes = 0;
|
int i, changes = 0;
|
||||||
char last = 0;
|
uint8_t last = 0;
|
||||||
|
|
||||||
if (p->buf_size < 32)
|
if (p->buf_size < 32)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue