diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-01-13 11:56:59 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-01-13 15:00:09 +0100 |
commit | 8b76362836f3c373c3aadc544522edcbef16dd5f (patch) | |
tree | 6254fdbad014e52a6af8f016ef0d8529d28b5867 /libavformat | |
parent | c1868e7ee7b07b40a0fe15f50df89fe499a01a50 (diff) | |
download | ffmpeg-streaming-8b76362836f3c373c3aadc544522edcbef16dd5f.zip ffmpeg-streaming-8b76362836f3c373c3aadc544522edcbef16dd5f.tar.gz |
lavf: use a fixed width type
It's shorter and more consistent with the rest of the code.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |