Lines Matching refs:mCamcorderProfiles

188     CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1);  in createVideoCodec()
189 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mVideoCodec = videoCodec; in createVideoCodec()
210 CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1); in createAudioCodec()
211 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mAudioCodec = audioCodec; in createAudioCodec()
418 profiles->mCamcorderProfiles.add( in startElementHandler()
474 for (size_t i = 0, n = mCamcorderProfiles.size(); i < n; ++i) { in checkAndAddRequiredProfilesIfNecessary()
475 int product = mCamcorderProfiles[i]->mVideoCodec->mFrameWidth * in checkAndAddRequiredProfilesIfNecessary()
476 mCamcorderProfiles[i]->mVideoCodec->mFrameHeight; in checkAndAddRequiredProfilesIfNecessary()
478 camcorder_quality quality = mCamcorderProfiles[i]->mQuality; in checkAndAddRequiredProfilesIfNecessary()
479 int cameraId = mCamcorderProfiles[i]->mCameraId; in checkAndAddRequiredProfilesIfNecessary()
548 *mCamcorderProfiles[info->mRefProfileIndex]); in checkAndAddRequiredProfilesIfNecessary()
578 mCamcorderProfiles[info->mRefProfileIndex]->mQuality, in checkAndAddRequiredProfilesIfNecessary()
581 mCamcorderProfiles.add(profile); in checkAndAddRequiredProfilesIfNecessary()
749 profiles->mCamcorderProfiles.add(lowProfile); in createDefaultCamcorderProfiles()
750 profiles->mCamcorderProfiles.add(lowSpecificProfile); in createDefaultCamcorderProfiles()
755 profiles->mCamcorderProfiles.add(highProfile); in createDefaultCamcorderProfiles()
756 profiles->mCamcorderProfiles.add(highSpecificProfile); in createDefaultCamcorderProfiles()
761 profiles->mCamcorderProfiles.add(lowTimeLapseProfile); in createDefaultCamcorderProfiles()
762 profiles->mCamcorderProfiles.add(lowSpecificTimeLapseProfile); in createDefaultCamcorderProfiles()
768 profiles->mCamcorderProfiles.add(highTimeLapseProfile); in createDefaultCamcorderProfiles()
769 profiles->mCamcorderProfiles.add(highSpecificTimeLapseProfile); in createDefaultCamcorderProfiles()
991 for (size_t i = 0, n = mCamcorderProfiles.size(); i < n; ++i) { in getCamcorderProfileIndex()
992 if (mCamcorderProfiles[i]->mCameraId == cameraId && in getCamcorderProfileIndex()
993 mCamcorderProfiles[i]->mQuality == quality) { in getCamcorderProfileIndex()
1015 if (!strcmp("duration", name)) return mCamcorderProfiles[index]->mDuration; in getCamcorderProfileParamByName()
1016 if (!strcmp("file.format", name)) return mCamcorderProfiles[index]->mFileFormat; in getCamcorderProfileParamByName()
1017 if (!strcmp("vid.codec", name)) return mCamcorderProfiles[index]->mVideoCodec->mCodec; in getCamcorderProfileParamByName()
1018 if (!strcmp("vid.width", name)) return mCamcorderProfiles[index]->mVideoCodec->mFrameWidth; in getCamcorderProfileParamByName()
1019 if (!strcmp("vid.height", name)) return mCamcorderProfiles[index]->mVideoCodec->mFrameHeight; in getCamcorderProfileParamByName()
1020 if (!strcmp("vid.bps", name)) return mCamcorderProfiles[index]->mVideoCodec->mBitRate; in getCamcorderProfileParamByName()
1021 if (!strcmp("vid.fps", name)) return mCamcorderProfiles[index]->mVideoCodec->mFrameRate; in getCamcorderProfileParamByName()
1022 if (!strcmp("aud.codec", name)) return mCamcorderProfiles[index]->mAudioCodec->mCodec; in getCamcorderProfileParamByName()
1023 if (!strcmp("aud.bps", name)) return mCamcorderProfiles[index]->mAudioCodec->mBitRate; in getCamcorderProfileParamByName()
1024 if (!strcmp("aud.ch", name)) return mCamcorderProfiles[index]->mAudioCodec->mChannels; in getCamcorderProfileParamByName()
1025 if (!strcmp("aud.hz", name)) return mCamcorderProfiles[index]->mAudioCodec->mSampleRate; in getCamcorderProfileParamByName()
1080 for (size_t i = 0; i < mCamcorderProfiles.size(); ++i) { in ~MediaProfiles()
1081 delete mCamcorderProfiles[i]; in ~MediaProfiles()
1083 mCamcorderProfiles.clear(); in ~MediaProfiles()