X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=aac_afh.c;h=bcd2a14edfd8de64baaca165f17ae855490e8cc9;hb=032d743d782e23604daa926c8e153ad4a75797be;hp=c49f30dea858f05c627a820685fd6538b55eb07d;hpb=becfb4be64a123630775b6517279ed20e4b498f8;p=paraslash.git diff --git a/aac_afh.c b/aac_afh.c index c49f30de..bcd2a14e 100644 --- a/aac_afh.c +++ b/aac_afh.c @@ -33,11 +33,11 @@ static int aac_find_stsz(unsigned char *buf, size_t buflen, off_t *skip) PARA_DEBUG_LOG("found stsz@%d\n", i); i += 8; sample_size = aac_read_int32(buf + i); - PARA_DEBUG_LOG("sample size: %d\n", sample_size); + PARA_DEBUG_LOG("sample size: %u\n", sample_size); i += 4; sample_count = aac_read_int32(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; }