• Home
  • Raw
  • Download

Lines Matching refs:mCamcorderProfiles

182     CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1);  in createVideoCodec()
183 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mVideoCodec = videoCodec; in createVideoCodec()
204 CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1); in createAudioCodec()
205 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mAudioCodec = audioCodec; in createAudioCodec()
448 profiles->mCamcorderProfiles.add( in startElementHandler()
503 for (size_t i = 0, n = mCamcorderProfiles.size(); i < n; ++i) { in checkAndAddRequiredProfilesIfNecessary()
504 int product = mCamcorderProfiles[i]->mVideoCodec->mFrameWidth * in checkAndAddRequiredProfilesIfNecessary()
505 mCamcorderProfiles[i]->mVideoCodec->mFrameHeight; in checkAndAddRequiredProfilesIfNecessary()
507 camcorder_quality quality = mCamcorderProfiles[i]->mQuality; in checkAndAddRequiredProfilesIfNecessary()
508 int cameraId = mCamcorderProfiles[i]->mCameraId; in checkAndAddRequiredProfilesIfNecessary()
575 *mCamcorderProfiles[info->mRefProfileIndex]); in checkAndAddRequiredProfilesIfNecessary()
605 mCamcorderProfiles[info->mRefProfileIndex]->mQuality, in checkAndAddRequiredProfilesIfNecessary()
608 mCamcorderProfiles.add(profile); in checkAndAddRequiredProfilesIfNecessary()
772 profiles->mCamcorderProfiles.add(lowProfile); in createDefaultCamcorderProfiles()
773 profiles->mCamcorderProfiles.add(lowSpecificProfile); in createDefaultCamcorderProfiles()
778 profiles->mCamcorderProfiles.add(highProfile); in createDefaultCamcorderProfiles()
779 profiles->mCamcorderProfiles.add(highSpecificProfile); in createDefaultCamcorderProfiles()
784 profiles->mCamcorderProfiles.add(lowTimeLapseProfile); in createDefaultCamcorderProfiles()
785 profiles->mCamcorderProfiles.add(lowSpecificTimeLapseProfile); in createDefaultCamcorderProfiles()
790 profiles->mCamcorderProfiles.add(highTimeLapseProfile); in createDefaultCamcorderProfiles()
791 profiles->mCamcorderProfiles.add(highSpecificTimeLapseProfile); in createDefaultCamcorderProfiles()
1089 for (size_t i = 0, n = mCamcorderProfiles.size(); i < n; ++i) { in getCamcorderProfileIndex()
1090 if (mCamcorderProfiles[i]->mCameraId == cameraId && in getCamcorderProfileIndex()
1091 mCamcorderProfiles[i]->mQuality == quality) { in getCamcorderProfileIndex()
1113 if (!strcmp("duration", name)) return mCamcorderProfiles[index]->mDuration; in getCamcorderProfileParamByName()
1114 if (!strcmp("file.format", name)) return mCamcorderProfiles[index]->mFileFormat; in getCamcorderProfileParamByName()
1115 if (!strcmp("vid.codec", name)) return mCamcorderProfiles[index]->mVideoCodec->mCodec; in getCamcorderProfileParamByName()
1116 if (!strcmp("vid.width", name)) return mCamcorderProfiles[index]->mVideoCodec->mFrameWidth; in getCamcorderProfileParamByName()
1117 if (!strcmp("vid.height", name)) return mCamcorderProfiles[index]->mVideoCodec->mFrameHeight; in getCamcorderProfileParamByName()
1118 if (!strcmp("vid.bps", name)) return mCamcorderProfiles[index]->mVideoCodec->mBitRate; in getCamcorderProfileParamByName()
1119 if (!strcmp("vid.fps", name)) return mCamcorderProfiles[index]->mVideoCodec->mFrameRate; in getCamcorderProfileParamByName()
1120 if (!strcmp("aud.codec", name)) return mCamcorderProfiles[index]->mAudioCodec->mCodec; in getCamcorderProfileParamByName()
1121 if (!strcmp("aud.bps", name)) return mCamcorderProfiles[index]->mAudioCodec->mBitRate; in getCamcorderProfileParamByName()
1122 if (!strcmp("aud.ch", name)) return mCamcorderProfiles[index]->mAudioCodec->mChannels; in getCamcorderProfileParamByName()
1123 if (!strcmp("aud.hz", name)) return mCamcorderProfiles[index]->mAudioCodec->mSampleRate; in getCamcorderProfileParamByName()
1178 for (size_t i = 0; i < mCamcorderProfiles.size(); ++i) { in ~MediaProfiles()
1179 delete mCamcorderProfiles[i]; in ~MediaProfiles()
1181 mCamcorderProfiles.clear(); in ~MediaProfiles()