mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
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)
|
||||
{
|
||||
int i, changes = 0;
|
||||
char last = 0;
|
||||
uint8_t last = 0;
|
||||
|
||||
if (p->buf_size < 32)
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user