projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c1868e7
)
lavf: use a fixed width type
author
Anton Khirnov
<anton@khirnov.net>
Mon, 13 Jan 2014 10:56:59 +0000
(11:56 +0100)
committer
Anton Khirnov
<anton@khirnov.net>
Mon, 13 Jan 2014 14:00:09 +0000
(15:00 +0100)
It's shorter and more consistent with the rest of the code.
libavformat/utils.c
patch
|
blob
|
history
diff --git
a/libavformat/utils.c
b/libavformat/utils.c
index 938f06fbaee89846ff774bd2bc9be01c59abc3e4..460ec4514ef2bfe18323b65565c035e7edee9468 100644
(file)
--- 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 : "" };
- u
nsigned char
*buf = NULL;
+ u
int8_t
*buf = NULL;
int ret = 0, probe_size;
if (!max_probe_size) {