Lines Matching refs:mCamcorderProfiles

480     CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1);  in createVideoCodec()
481 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mVideoCodecs.emplace_back(videoCodec); in createVideoCodec()
510 CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1); in createAudioCodec()
511 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mAudioCodecs.emplace_back(audioCodec); in createAudioCodec()
770 profiles->mCamcorderProfiles.add(profile); in startElementHandler()
826 for (size_t i = 0, n = mCamcorderProfiles.size(); i < n; ++i) { in checkAndAddRequiredProfilesIfNecessary()
828 if (mCamcorderProfiles[i]->mVideoCodecs.empty()) { in checkAndAddRequiredProfilesIfNecessary()
829 mCamcorderProfiles[i]->mVideoCodecs.emplace_back( in checkAndAddRequiredProfilesIfNecessary()
833 if (mCamcorderProfiles[i]->mAudioCodecs.empty()) { in checkAndAddRequiredProfilesIfNecessary()
834 mCamcorderProfiles[i]->mAudioCodecs.emplace_back( in checkAndAddRequiredProfilesIfNecessary()
839 int product = mCamcorderProfiles[i]->mVideoCodecs[0].mFrameWidth * in checkAndAddRequiredProfilesIfNecessary()
840 mCamcorderProfiles[i]->mVideoCodecs[0].mFrameHeight; in checkAndAddRequiredProfilesIfNecessary()
842 camcorder_quality quality = mCamcorderProfiles[i]->mQuality; in checkAndAddRequiredProfilesIfNecessary()
843 int cameraId = mCamcorderProfiles[i]->mCameraId; in checkAndAddRequiredProfilesIfNecessary()
911 *mCamcorderProfiles[info->mRefProfileIndex]); in checkAndAddRequiredProfilesIfNecessary()
941 mCamcorderProfiles[info->mRefProfileIndex]->mQuality, in checkAndAddRequiredProfilesIfNecessary()
944 mCamcorderProfiles.add(profile.release()); in checkAndAddRequiredProfilesIfNecessary()
1116 profiles->mCamcorderProfiles.add(lowProfile); in createDefaultCamcorderProfiles()
1117 profiles->mCamcorderProfiles.add(lowSpecificProfile); in createDefaultCamcorderProfiles()
1122 profiles->mCamcorderProfiles.add(highProfile); in createDefaultCamcorderProfiles()
1123 profiles->mCamcorderProfiles.add(highSpecificProfile); in createDefaultCamcorderProfiles()
1128 profiles->mCamcorderProfiles.add(lowTimeLapseProfile); in createDefaultCamcorderProfiles()
1129 profiles->mCamcorderProfiles.add(lowSpecificTimeLapseProfile); in createDefaultCamcorderProfiles()
1135 profiles->mCamcorderProfiles.add(highTimeLapseProfile); in createDefaultCamcorderProfiles()
1136 profiles->mCamcorderProfiles.add(highSpecificTimeLapseProfile); in createDefaultCamcorderProfiles()
1364 for (size_t i = 0, n = mCamcorderProfiles.size(); i < n; ++i) { in getCamcorderProfileIndex()
1365 if (mCamcorderProfiles[i]->mCameraId == cameraId && in getCamcorderProfileIndex()
1366 mCamcorderProfiles[i]->mQuality == quality) { in getCamcorderProfileIndex()
1383 return mCamcorderProfiles[index]; in getCamcorderProfile()
1418 if (!strcmp("duration", name)) return mCamcorderProfiles[index]->mDuration; in getCamcorderProfileParamByName()
1419 if (!strcmp("file.format", name)) return mCamcorderProfiles[index]->mFileFormat; in getCamcorderProfileParamByName()
1420 if (!strcmp("vid.codec", name)) return mCamcorderProfiles[index]->mVideoCodecs[0].mCodec; in getCamcorderProfileParamByName()
1421 if (!strcmp("vid.width", name)) return mCamcorderProfiles[index]->mVideoCodecs[0].mFrameWidth; in getCamcorderProfileParamByName()
1422 if (!strcmp("vid.height", name)) return mCamcorderProfiles[index]->mVideoCodecs[0].mFrameHeight; in getCamcorderProfileParamByName()
1423 if (!strcmp("vid.bps", name)) return mCamcorderProfiles[index]->mVideoCodecs[0].mBitRate; in getCamcorderProfileParamByName()
1424 if (!strcmp("vid.fps", name)) return mCamcorderProfiles[index]->mVideoCodecs[0].mFrameRate; in getCamcorderProfileParamByName()
1425 if (!strcmp("aud.codec", name)) return mCamcorderProfiles[index]->mAudioCodecs[0].mCodec; in getCamcorderProfileParamByName()
1426 if (!strcmp("aud.bps", name)) return mCamcorderProfiles[index]->mAudioCodecs[0].mBitRate; in getCamcorderProfileParamByName()
1427 if (!strcmp("aud.ch", name)) return mCamcorderProfiles[index]->mAudioCodecs[0].mChannels; in getCamcorderProfileParamByName()
1428 if (!strcmp("aud.hz", name)) return mCamcorderProfiles[index]->mAudioCodecs[0].mSampleRate; in getCamcorderProfileParamByName()
1483 for (size_t i = 0; i < mCamcorderProfiles.size(); ++i) { in ~MediaProfiles()
1484 delete mCamcorderProfiles[i]; in ~MediaProfiles()
1486 mCamcorderProfiles.clear(); in ~MediaProfiles()