X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=aac_afh.c;h=9cab39205d9739736653fa359240aeebaf9508f9;hp=436005e0db128796618e6b34285dc06110a04c8e;hb=e19276003c9158fceccae4d7e626cabb2fb5b0dd;hpb=55f0f9461990455656bef7a36b0f963e3d676653 diff --git a/aac_afh.c b/aac_afh.c index 436005e0..9cab3920 100644 --- a/aac_afh.c +++ b/aac_afh.c @@ -31,16 +31,59 @@ static FILE *infile; static int inbuf_size; static unsigned char *inbuf; -static ssize_t *chunk_table; +static unsigned inbuf_len; struct audio_format *af; -unsigned num_chunks, chunk_num; +static unsigned num_chunks, entry; +static size_t *chunk_table; NeAACDecHandle handle; + + static void aac_close_audio_file(void) { } +static int read_stsz(unsigned skip) +{ + int ret, i; + long unsigned sum = 0; + + for (;;) { + ret = aac_find_stsz(inbuf, inbuf_len, &skip); + if (ret >= 0) + break; + ret = read(fileno(infile), inbuf, inbuf_size); + if (ret <= 0) + return -E_AAC_READ; + PARA_INFO_LOG("next buffer: %d bytes\n", ret); + } + num_chunks = ret; + PARA_INFO_LOG("sz table has %d entries\n", num_chunks); + free(chunk_table); + chunk_table = para_malloc(num_chunks * sizeof(size_t)); + for (i = 0; i < num_chunks; i++) { + if (skip + 4 > inbuf_len) { + skip = inbuf_len - skip; + memmove(inbuf, inbuf + inbuf_len - skip, skip); + ret = read(fileno(infile), inbuf + skip, inbuf_size - skip); + if (ret <= 0) + return -E_AAC_READ; + inbuf_len = ret + skip; + skip = 0; + PARA_INFO_LOG("next buffer: %d bytes\n", inbuf_len); + } + sum += aac_read_int32(inbuf + skip); + chunk_table[i] = sum; + skip += 4; + if (i < 10 || i > num_chunks - 10) + PARA_DEBUG_LOG("offset #%d: %d\n", i, chunk_table[i]); + } + return 1; + +} + + /* * Init m4a file and write some tech data to given pointers. */ @@ -48,9 +91,9 @@ static int aac_get_file_info(FILE *file, char *info_str, long unsigned *frames, int *seconds) { int ret, skip, decoder_len; - unsigned inbuf_len; unsigned long rate = 0; unsigned char channels = 0; + mp4AudioSpecificConfig mp4ASC; free(inbuf); inbuf_size = DEFAULT_INBUF_SIZE; @@ -70,9 +113,49 @@ static int aac_get_file_info(FILE *file, char *info_str, long unsigned *frames, decoder_len = ret; handle = aac_open(); ret = NeAACDecInit(handle, inbuf + skip, - inbuf_len - skip, &rate, &channels); + decoder_len, &rate, &channels); + if (ret < 0) + return -E_AACDEC_INIT; + skip += ret; PARA_INFO_LOG("rate: %lu, channels: %d\n", rate, channels); - + ret = NeAACDecAudioSpecificConfig(inbuf + skip, inbuf_len - skip, &mp4ASC); + if (ret >= 0) { + PARA_DEBUG_LOG("mp4ASC.samplingFrequency: %lu\n", + mp4ASC.samplingFrequency); + } else + PARA_WARNING_LOG("no mp4ASC %s\n", ""); + + ret = read_stsz(skip); + if (ret < 0) + return ret; + for (;;) { + ret = aac_find_stco(inbuf, inbuf_len, &skip); + if (ret >= 0) + break; + ret = read(fileno(infile), inbuf, inbuf_size); + if (ret <= 0) + return -E_AAC_READ; + PARA_INFO_LOG("next buffer: %d bytes\n", ret); + } + *frames = ret; + entry = aac_read_int32(inbuf + skip); + PARA_INFO_LOG("offset table has %d entries\, entry: %zd\n", num_chunks, + entry); +#if 1 + sprintf(info_str, "audio_file_info1:%d x %lums\n" + "audio_file_info2:\n" + "audio_file_info3:\n", + num_chunks, + tv2ms(&af->chunk_tv)); +#endif +#if 1 + { + struct timeval total_tv; + tv_scale(num_chunks, &af->chunk_tv, &total_tv); + *seconds = tv2ms(&total_tv) / 1000; + PARA_INFO_LOG("%d seconds, %d chunks\n", *seconds, num_chunks); + } +#endif return 1; } @@ -84,26 +167,48 @@ static int aac_reposition_stream(long unsigned request) return -E_AAC_REPOS; } -static int get_chunk_size(long unsigned chunk_num) +static __must_check int para_fread(void *ptr, size_t size, size_t nmemb, FILE *stream) { - int ret; - if (chunk_num >= num_chunks) - return -1; - ret = chunk_table[chunk_num + 1] - chunk_table[chunk_num]; - if (!ret) - return ret; -#if 0 - PARA_DEBUG_LOG("chunk %d: %lli-%lli (%lli bytes)\n", - chunk_num, - chunk_table[chunk_num], - chunk_table[chunk_num + 1] - 1, - ret); -#endif - return ret; + size_t res = fread(ptr, size, nmemb, stream); + if (res == nmemb) + return size * nmemb; + if (feof(stream)) + return 0; + return -E_FREAD; } char *aac_read_chunk(long unsigned current_chunk, ssize_t *len) { + int ret; + size_t pos; + + *len = 0; + if (current_chunk >= num_chunks) + return NULL; + if (!current_chunk) { + *len = entry; + pos = 0; + } else if (current_chunk == 1) { + *len = chunk_table[0]; + pos = entry; + } else { + *len = chunk_table[current_chunk - 1] - chunk_table[current_chunk - 2]; + pos = entry + chunk_table[current_chunk - 2]; + } + if (inbuf_size < *len) { + inbuf = para_realloc(inbuf, *len); + inbuf_size = *len; + } +// PARA_DEBUG_LOG("reading chunk #%lu@%zd (%zd bytes)\n", current_chunk, +// pos, *len); + ret = fseek(infile, pos, SEEK_SET); + if (ret < 0) + return NULL; + ret = para_fread(inbuf, *len, 1, infile); + if (ret != *len) + return NULL; +// PARA_DEBUG_LOG("ret: %d, inbuf[0]: %lx - %lx\n", ret, (long unsigned) inbuf[0], +// (long unsigned) inbuf[4]); return (char *)inbuf; } @@ -116,6 +221,6 @@ void aac_afh_init(void *p) af->close_audio_file = aac_close_audio_file; af->get_header_info = NULL; af->chunk_tv.tv_sec = 0; - af->chunk_tv.tv_usec = 250 * 1000; + af->chunk_tv.tv_usec = 23120; tv_scale(3, &af->chunk_tv, &af->eof_tv); }