X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=aac_common.c;h=7ccc668f55127727ec0161477bc3f2e2c7a6e980;hp=b3463b25284f62bc2cffbe74c501755864965e38;hb=2349dbb8c69a97f271c8cb8440016ac5afc34dab;hpb=bfbc3f075056b468dfdb525d8a623fe50a20117a diff --git a/aac_common.c b/aac_common.c index b3463b25..7ccc668f 100644 --- a/aac_common.c +++ b/aac_common.c @@ -20,12 +20,16 @@ * Ahead Software AG */ -/** \file aac_ccomon.c common functions of aac_afh and aadcec */ +/** \file aac_common.c common functions of aac_afh and aadcec */ #include "para.h" #include "aac.h" #include "error.h" +/** + * get a new libfaad decoder handle + * + */ NeAACDecHandle aac_open(void) { NeAACDecHandle h = NeAACDecOpen(); @@ -54,9 +58,19 @@ static int aac_read_decoder_length(unsigned char *buf, int *description_len) return length; } -int aac_find_esds(unsigned char *buf, unsigned buflen, int *skip) +/** + * search for the position and the length of the decoder configuration + * + * \param buf buffer to seach + * \param buflen length of \a buf + * \param skip Upon succesful return, this contains the offset in \a buf where + * the decoder config starts. + * + * \return The length of the decoder configuration + */ +ssize_t aac_find_esds(unsigned char *buf, size_t buflen, size_t *skip) { - int i; + size_t i; for (i = 0; i + 4 < buflen; i++) { unsigned char *p = buf + i; @@ -66,7 +80,7 @@ int aac_find_esds(unsigned char *buf, unsigned buflen, int *skip) continue; i += 8; p = buf + i; - PARA_INFO_LOG("found esds@%d, next: %x\n", i, *p); + PARA_INFO_LOG("found esds@%zu, next: %x\n", i, *p); if (*p == 3) i += 8; else @@ -91,31 +105,35 @@ int aac_find_esds(unsigned char *buf, unsigned buflen, int *skip) return -E_ESDS; } -unsigned aac_read_int32(unsigned char *buf) -{ - uint8_t *d = (uint8_t*)buf; - return (d[0] << 24) | (d[1] << 16) | (d[2] << 8) | d[3]; -} - - -int aac_find_entry_point(unsigned char *buf, unsigned buflen, int *skip) +/** + * search for the first entry in the stco table + * + * \param buf buffer to seach + * \param buflen length of \a buf + * \param skip Upon succesful return, this contains the number + * of bytes to skip from the input buffer. + * + * \return the position of the first entry in the table on success, + * -E_STCO on errors. + */ +ssize_t aac_find_entry_point(unsigned char *buf, size_t buflen, size_t *skip) { - int i, ret; + ssize_t ret; + size_t i; for (i = 0; i + 20 < buflen; i++) { unsigned char *p = buf + i; if (p[0] != 's' || p[1] != 't' || p[2] != 'c' || p[3] != 'o') continue; - PARA_INFO_LOG("found stco@%d\n", i); + PARA_INFO_LOG("found stco@%zu\n", i); i += 12; ret = aac_read_int32(buf + i); /* first offset */ i += 4; - PARA_INFO_LOG("num entries: %d\n", ret); + PARA_INFO_LOG("num entries: %zd\n", ret); *skip = i; return ret; } - PARA_WARNING_LOG("stco not found, buflen: %d\n", buflen); + PARA_WARNING_LOG("stco not found, buflen: %zu\n", buflen); return -E_STCO; } -