]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - aac_afh.c
mp4: Introduce mp4ff_get_duration().
[paraslash.git] / aac_afh.c
index dd9247d7ac6bba54a1c49512613ea8011a387a46..15e338e5b61efb84d39e24fbff17952137008871 100644 (file)
--- a/aac_afh.c
+++ b/aac_afh.c
@@ -24,7 +24,6 @@ struct aac_afh_context {
        size_t fpos;
        int32_t track;
        struct mp4ff *mp4ff;
-       mp4AudioSpecificConfig masc;
        struct mp4ff_callback cb;
 };
 
@@ -50,7 +49,7 @@ static uint32_t aac_afh_seek_cb(void *user_data, uint64_t pos)
        return 0;
 }
 
-static int32_t aac_afh_get_track(struct mp4ff *mp4ff, mp4AudioSpecificConfig *masc)
+static int32_t aac_afh_get_track(struct mp4ff *mp4ff)
 {
        int32_t i, rc, num_tracks = mp4ff_total_tracks(mp4ff);
 
@@ -61,7 +60,8 @@ static int32_t aac_afh_get_track(struct mp4ff *mp4ff, mp4AudioSpecificConfig *ma
 
                mp4ff_get_decoder_config(mp4ff, i, &buf, &buf_size);
                if (buf) {
-                       rc = NeAACDecAudioSpecificConfig(buf, buf_size, masc);
+                       mp4AudioSpecificConfig masc;
+                       rc = NeAACDecAudioSpecificConfig(buf, buf_size, &masc);
                        free(buf);
                        if (rc < 0)
                                continue;
@@ -87,7 +87,7 @@ static int aac_afh_open(const void *map, size_t mapsize, void **afh_context)
        c->mp4ff = mp4ff_open_read(&c->cb);
        if (!c->mp4ff)
                goto free_ctx;
-       c->track = aac_afh_get_track(c->mp4ff, &c->masc);
+       c->track = aac_afh_get_track(c->mp4ff);
        ret = -E_MP4FF_TRACK;
        if (c->track < 0)
                goto close_mp4ff;
@@ -145,7 +145,7 @@ static int aac_get_file_info(char *map, size_t numbytes, __a_unused int fd,
        int ret;
        int32_t rv;
        struct aac_afh_context *c;
-       int64_t tmp;
+       uint64_t milliseconds;
        const char *buf;
        uint32_t n, len;
 
@@ -176,11 +176,9 @@ static int aac_get_file_info(char *map, size_t numbytes, __a_unused int fd,
                        break;
                afhi->max_chunk_size = PARA_MAX(afhi->max_chunk_size, len);
        }
-
-       tmp = c->masc.sbr_present_flag == 1? 2048 : 1024;
-       afhi->seconds_total = tmp * afhi->chunks_total / afhi->frequency;
-       ms2tv(1000 * tmp / afhi->frequency, &afhi->chunk_tv);
-
+       milliseconds = mp4ff_get_duration(c->mp4ff, c->track);
+       afhi->seconds_total = milliseconds / 1000;
+       ms2tv(milliseconds / afhi->chunks_total, &afhi->chunk_tv);
        if (aac_afh_get_chunk(0, c, &buf, &len) >= 0)
                numbytes -= buf - map;
        afhi->bitrate = 8 * numbytes / afhi->seconds_total / 1000;