X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=aac_common.c;h=14662fddecec4b989a2c828959167b23c07e485c;hp=7ccc668f55127727ec0161477bc3f2e2c7a6e980;hb=fa578bf1d070161cafcbcc69ca7b810414ee1a4b;hpb=2349dbb8c69a97f271c8cb8440016ac5afc34dab;ds=sidebyside diff --git a/aac_common.c b/aac_common.c index 7ccc668f..14662fdd 100644 --- a/aac_common.c +++ b/aac_common.c @@ -1,19 +1,7 @@ /* - * Copyright (C) 2006 Andre Noll + * Copyright (C) 2006-2011 Andre Noll * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Licensed under the GPL v2. For licencing details see COPYING. */ /* * based in parts on libfaad, Copyright (C) 2003-2005 M. Bakker, @@ -40,13 +28,13 @@ NeAACDecHandle aac_open(void) c->downMatrix = 0; NeAACDecSetConfiguration(h, c); return h; -}; +} -static int aac_read_decoder_length(unsigned char *buf, int *description_len) +static unsigned long aac_read_decoder_length(unsigned char *buf, int *description_len) { uint8_t b; uint8_t numBytes = 0; - uint32_t length = 0; + unsigned long length = 0; do { b = buf[numBytes]; @@ -65,16 +53,19 @@ static int aac_read_decoder_length(unsigned char *buf, int *description_len) * \param buflen length of \a buf * \param skip Upon succesful return, this contains the offset in \a buf where * the decoder config starts. + * \param decoder_length result pointer that is filled in with the length of + * the decoder configuration on success. * - * \return The length of the decoder configuration + * \return positive on success, negative on errors */ -ssize_t aac_find_esds(unsigned char *buf, size_t buflen, size_t *skip) +int aac_find_esds(unsigned char *buf, size_t buflen, size_t *skip, + unsigned long *decoder_length) { size_t i; for (i = 0; i + 4 < buflen; i++) { unsigned char *p = buf + i; - int decoder_length, description_len; + int description_len; if (p[0] != 'e' || p[1] != 's' || p[2] != 'd' || p[3] != 's') continue; @@ -96,11 +87,11 @@ ssize_t aac_find_esds(unsigned char *buf, size_t buflen, size_t *skip) continue; i++; p = buf + i; - decoder_length = aac_read_decoder_length(p, &description_len); - PARA_INFO_LOG("decoder length: %d\n", decoder_length); + *decoder_length = aac_read_decoder_length(p, &description_len); + PARA_INFO_LOG("decoder length: %lu\n", *decoder_length); i += description_len; *skip = i; - return decoder_length; + return 1; } return -E_ESDS; } @@ -130,7 +121,7 @@ ssize_t aac_find_entry_point(unsigned char *buf, size_t buflen, size_t *skip) i += 12; ret = aac_read_int32(buf + i); /* first offset */ i += 4; - PARA_INFO_LOG("num entries: %zd\n", ret); + PARA_INFO_LOG("entry point: %zd\n", ret); *skip = i; return ret; }