Lines Matching refs:mCamcorderProfiles

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