lavf: use a fixed width type

It's shorter and more consistent with the rest of the code.
This commit is contained in:
Anton Khirnov 2014-01-13 11:56:59 +01:00
parent c1868e7ee7
commit 8b76362836
1 changed files with 1 additions and 1 deletions

View File

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