Home | History | Annotate | Download | only in src

Lines Matching refs:samplecount

1395             uint32 samplecount = iMP4FileHandle->getSampleCountInTrack(trackID);
1403 if (TrackDurationInSec < OverflowThreshold && samplecount < OverflowThreshold)
1408 frame_rate = samplecount * MILLISECOND_TIMESCALE / TrackDurationInMilliSec;
1415 frame_rate = samplecount / TrackDurationInSec;
3672 uint32 samplecount = iMP4FileHandle->getSampleCountInTrack(trackID);
3681 if (TrackDurationInSec < OverflowThreshold && samplecount < OverflowThreshold)
3686 frame_rate = samplecount * MILLISECOND_TIMESCALE / TrackDurationInMilliSec;
3697 frame_rate = samplecount / TrackDurationInSec;
4750 uint32 samplecount = (uint32)(iMP4FileHandle->getSampleCountInTrack(trackidlist[i])); // Always returns unsigned value
4752 retval = PVMFCreateKVPUtils::CreateKVPForUInt32Value(trackkvp, PVMP4METADATA_TRACKINFO_SAMPLECOUNT_KEY, samplecount, indexparam);