lavf: use a fixed width type

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

(cherry picked from commit 8b76362836)

Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
Anton Khirnov
2014-01-13 11:56:59 +01:00
parent e38c62fe0c
commit 539d255871

View File

@@ -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) {