Searched defs:timeScale (Results 1 - 11 of 11) sorted by relevance

/frameworks/av/libvideoeditor/osal/inc/
H A DM4OSA_FileCommon.h75 M4OSA_UInt32 timeScale; member in struct:__anon86
/frameworks/av/libvideoeditor/vss/src/
H A DM4READER_Amr.c306 pStreamHandler->m_pUserData = (void*)streamDesc.timeScale; /*trick to change*/
667 M4_MediaTime timeScale; local
707 timeScale = (M4OSA_Float)(M4OSA_Int32)(pStreamHandler->m_pUserData)/1000;
710 pAccessUnit->m_CTS = (M4_MediaTime)pAu->CTS/*/timeScale*/;
711 pAccessUnit->m_DTS = (M4_MediaTime)pAu->DTS/*/timeScale*/;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_vui.h104 u32 timeScale; member in struct:__anon892
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DRTSPSource.cpp547 int32_t timeScale; local
548 sp<MetaData> format = mHandler->getTrackFormat(i, &timeScale);
565 info.mTimeScale = timeScale;
/frameworks/av/libvideoeditor/vss/common/inc/
H A DM4SYS_Stream.h155 M4OSA_UInt32 timeScale; /**< The time scale of the stream. It means that all timing member in struct:__anon196
157 (ie timeScale = 8000, means there are 8000 ticks in
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp495 status_t StagefrightRecorder::setParamMovieTimeScale(int32_t timeScale) { argument
496 ALOGV("setParamMovieTimeScale: %d", timeScale);
500 if (timeScale < 600 || timeScale > 96000) {
501 ALOGE("Time scale (%d) for movie is out of range [600, 96000]", timeScale);
504 mMovieTimeScale = timeScale;
508 status_t StagefrightRecorder::setParamVideoTimeScale(int32_t timeScale) { argument
509 ALOGV("setParamVideoTimeScale: %d", timeScale);
513 if (timeScale < 600 || timeScale > 6000
521 setParamAudioTimeScale(int32_t timeScale) argument
598 int32_t timeScale; local
638 int32_t timeScale; local
673 int32_t timeScale; local
[all...]
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp1618 uint32_t timeScale = readU32(offset + 8); local
1619 ALOGV("sidx refid/timescale: %d/%d", referenceId, timeScale);
1677 se.mDurationUs = 1000000LL * d2 / timeScale;
1681 info->mSidxDuration = total_duration * 1000000 / timeScale;
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h1456 sp<MetaData> getTrackFormat(size_t index, int32_t *timeScale) { argument
1462 *timeScale = info.mTimeScale;
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp48 int32_t timeScale,
1818 uint32_t timeScale; local
1819 if (!mDataSource->getUInt32(offset + 8, &timeScale)) {
1822 ALOGV("sidx refid/timescale: %d/%d", referenceId, timeScale);
1899 se.mDurationUs = 1000000LL * d2 / timeScale;
1903 mSidxDuration = total_duration * 1000000 / timeScale;
2379 int32_t timeScale,
2385 mTimescale(timeScale),
2376 MPEG4Source( const sp<MetaData> &format, const sp<DataSource> &dataSource, int32_t timeScale, const sp<SampleTable> &sampleTable, Vector<SidxEntry> &sidx, off64_t firstMoofOffset) argument
H A DOMXCodec.cpp4314 int32_t timeScale; local
4315 if (inputFormat->findInt32(kKeyTimeScale, &timeScale)) {
4316 mOutputFormat->setInt32(kKeyTimeScale, timeScale);
H A DMPEG4Writer.cpp1448 int32_t timeScale; local
1449 if (mMeta->findInt32(kKeyTimeScale, &timeScale)) {
1450 mTimeScale = timeScale;

Completed in 680 milliseconds