ffmpeg | branch: master | Carl Eugen Hoyos <ceffm...@gmail.com> | Sun Oct 8 23:41:14 2017 +0200| [14b15539398f5b7f72686e60c664fed1518bc20d] | committer: Carl Eugen Hoyos
lavf/adp: Fix the probe function on systems with signed char. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=14b15539398f5b7f72686e60c664fed1518bc20d --- libavformat/adp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/adp.c b/libavformat/adp.c index 735550307e..3914857ad5 100644 --- a/libavformat/adp.c +++ b/libavformat/adp.c @@ -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; _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog