mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-19 14:00:43 +00: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