[FFmpeg-cvslog] lavf: use a fixed width type
Anton Khirnov
git at videolan.org
Tue Feb 4 05:34:50 CET 2014
ffmpeg | branch: release/1.1 | Anton Khirnov <anton at khirnov.net> | Mon Jan 13 11:56:59 2014 +0100| [539d255871c9b3b2529c7c74167dc0e0a237452f] | committer: Anton Khirnov
lavf: use a fixed width type
It's shorter and more consistent with the rest of the code.
(cherry picked from commit 8b76362836f3c373c3aadc544522edcbef16dd5f)
Signed-off-by: Anton Khirnov <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=539d255871c9b3b2529c7c74167dc0e0a237452f
---
libavformat/utils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/utils.c b/libavformat/utils.c
index fb6606b..6cc4178 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -358,7 +358,7 @@ int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt,
unsigned int offset, unsigned int max_probe_size)
{
AVProbeData pd = { filename ? filename : "" };
- unsigned char *buf = NULL;
+ uint8_t *buf = NULL;
int ret = 0, probe_size;
if (!max_probe_size) {
More information about the ffmpeg-cvslog
mailing list