[FFmpeg-cvslog] lavf: use a fixed width type

Anton Khirnov git at videolan.org
Mon Jan 13 21:40:05 CET 2014


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Mon Jan 13 11:56:59 2014 +0100| [8b76362836f3c373c3aadc544522edcbef16dd5f] | committer: Anton Khirnov

lavf: use a fixed width type

It's shorter and more consistent with the rest of the code.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8b76362836f3c373c3aadc544522edcbef16dd5f
---

 libavformat/utils.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index 938f06f..460ec45 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -243,7 +243,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