X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=aac_afh.c;h=1c7fd706f0a7c9fe8c9d4d8db43846be18a9304d;hp=a30be96f4f9da70b841e26fd16a3044ebc1df8ac;hb=b52342d0b5df5446f149f0c1daf26f6e25b2aba7;hpb=ee1015b8fbb06705fcddff926cb028ff61adaff6;ds=sidebyside diff --git a/aac_afh.c b/aac_afh.c index a30be96f..1c7fd706 100644 --- a/aac_afh.c +++ b/aac_afh.c @@ -34,11 +34,11 @@ static int aac_find_stsz(char *buf, size_t buflen, off_t *skip) PARA_DEBUG_LOG("found stsz@%d\n", i); i += 8; sample_size = read_u32_be(buf + i); - PARA_DEBUG_LOG("sample size: %d\n", sample_size); + PARA_DEBUG_LOG("sample size: %u\n", sample_size); i += 4; sample_count = read_u32_be(buf + i); i += 4; - PARA_DEBUG_LOG("sample count: %d\n", sample_count); + PARA_DEBUG_LOG("sample count: %u\n", sample_count); *skip = i; return sample_count; }