Home | History | Annotate | Download | only in libstagefright

Lines Matching refs:timescale

73                 int32_t timeScale,
477 if (track->timescale != 0 &&
484 ((int64_t)sampleTime * 1000000) / track->timescale);
575 track->timescale = 0;
991 track->timescale = 0;
1074 ALOGW("ignoring edit list because timescale is 0");
1279 uint32_t timescale;
1281 timescale_offset, &timescale, sizeof(timescale))
1282 < (ssize_t)sizeof(timescale)) {
1286 if (!timescale) {
1287 ALOGE("timescale should not be ZERO.");
1291 mLastTrack->timescale = ntohl(timescale);
1316 if (duration != 0 && mLastTrack->timescale != 0) {
1318 kKeyDuration, (duration * 1000000) / mLastTrack->timescale);
1700 mLastTrack->timescale / t->default_sample_duration;
2572 uint32_t timeScale;
2573 if (!mDataSource->getUInt32(offset + 8, &timeScale)) {
2576 ALOGV("sidx refid/timescale: %d/%d", referenceId, timeScale);
2577 if (timeScale == 0)
2656 se.mDurationUs = 1000000LL * d2 / timeScale;
2660 uint64_t sidxDuration = total_duration * 1000000 / timeScale;
3378 track->meta, mDataSource, track->timescale, track->sampleTable,
3419 if (track->timescale == 0) {
3420 ALOGE("timescale invalid.");
3764 int32_t timeScale,
3773 mTimescale(timeScale),