blob: e6f3a33c78f6546e1730b287136d096ea6b34aac [file] [log] [blame]
James Dongc3711942010-01-19 17:45:38 -08001/*
2**
3** Copyright 2010, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18
19//#define LOG_NDEBUG 0
20#define LOG_TAG "MediaProfiles"
21
22#include <stdlib.h>
23#include <utils/Log.h>
24#include <utils/Vector.h>
25#include <cutils/properties.h>
26#include <expat.h>
27#include <media/MediaProfiles.h>
28#include <media/stagefright/MediaDebug.h>
29
30namespace android {
31
32Mutex MediaProfiles::sLock;
33bool MediaProfiles::sIsInitialized = false;
34MediaProfiles *MediaProfiles::sInstance = NULL;
35
36const MediaProfiles::NameToTagMap MediaProfiles::sVideoEncoderNameMap[] = {
37 {"h263", VIDEO_ENCODER_H263},
38 {"h264", VIDEO_ENCODER_H264},
39 {"m4v", VIDEO_ENCODER_MPEG_4_SP}
40};
41
42const MediaProfiles::NameToTagMap MediaProfiles::sAudioEncoderNameMap[] = {
43 {"amrnb", AUDIO_ENCODER_AMR_NB},
44 {"amrwb", AUDIO_ENCODER_AMR_WB},
45 {"aac", AUDIO_ENCODER_AAC},
46};
47
48const MediaProfiles::NameToTagMap MediaProfiles::sFileFormatMap[] = {
49 {"3gp", OUTPUT_FORMAT_THREE_GPP},
50 {"mp4", OUTPUT_FORMAT_MPEG_4}
51};
52
53const MediaProfiles::NameToTagMap MediaProfiles::sVideoDecoderNameMap[] = {
54 {"wmv", VIDEO_DECODER_WMV}
55};
56
57const MediaProfiles::NameToTagMap MediaProfiles::sAudioDecoderNameMap[] = {
58 {"wma", AUDIO_DECODER_WMA}
59};
60
61const MediaProfiles::NameToTagMap MediaProfiles::sCamcorderQualityNameMap[] = {
Nipun Kwatra4af0dfd2010-09-06 15:59:02 -070062 {"low", CAMCORDER_QUALITY_LOW},
James Dongc3711942010-01-19 17:45:38 -080063 {"high", CAMCORDER_QUALITY_HIGH},
Nipun Kwatra4af0dfd2010-09-06 15:59:02 -070064 {"qcif", CAMCORDER_QUALITY_QCIF},
Nipun Kwatra522632c2010-09-10 15:45:57 -070065 {"cif", CAMCORDER_QUALITY_CIF},
Nipun Kwatra4af0dfd2010-09-06 15:59:02 -070066 {"480p", CAMCORDER_QUALITY_480P},
67 {"720p", CAMCORDER_QUALITY_720P},
68 {"1080p", CAMCORDER_QUALITY_1080P},
69
70 {"timelapselow", CAMCORDER_QUALITY_TIME_LAPSE_LOW},
71 {"timelapsehigh", CAMCORDER_QUALITY_TIME_LAPSE_HIGH},
72 {"timelapseqcif", CAMCORDER_QUALITY_TIME_LAPSE_QCIF},
Nipun Kwatra522632c2010-09-10 15:45:57 -070073 {"timelapsecif", CAMCORDER_QUALITY_TIME_LAPSE_CIF},
Nipun Kwatra4af0dfd2010-09-06 15:59:02 -070074 {"timelapse480p", CAMCORDER_QUALITY_TIME_LAPSE_480P},
75 {"timelapse720p", CAMCORDER_QUALITY_TIME_LAPSE_720P},
76 {"timelapse1080p", CAMCORDER_QUALITY_TIME_LAPSE_1080P}
James Dongc3711942010-01-19 17:45:38 -080077};
78
79/*static*/ void
80MediaProfiles::logVideoCodec(const MediaProfiles::VideoCodec& codec)
81{
82 LOGV("video codec:");
83 LOGV("codec = %d", codec.mCodec);
84 LOGV("bit rate: %d", codec.mBitRate);
85 LOGV("frame width: %d", codec.mFrameWidth);
86 LOGV("frame height: %d", codec.mFrameHeight);
87 LOGV("frame rate: %d", codec.mFrameRate);
88}
89
90/*static*/ void
91MediaProfiles::logAudioCodec(const MediaProfiles::AudioCodec& codec)
92{
93 LOGV("audio codec:");
94 LOGV("codec = %d", codec.mCodec);
95 LOGV("bit rate: %d", codec.mBitRate);
96 LOGV("sample rate: %d", codec.mSampleRate);
97 LOGV("number of channels: %d", codec.mChannels);
98}
99
100/*static*/ void
101MediaProfiles::logVideoEncoderCap(const MediaProfiles::VideoEncoderCap& cap)
102{
103 LOGV("video encoder cap:");
104 LOGV("codec = %d", cap.mCodec);
105 LOGV("bit rate: min = %d and max = %d", cap.mMinBitRate, cap.mMaxBitRate);
106 LOGV("frame width: min = %d and max = %d", cap.mMinFrameWidth, cap.mMaxFrameWidth);
107 LOGV("frame height: min = %d and max = %d", cap.mMinFrameHeight, cap.mMaxFrameHeight);
108 LOGV("frame rate: min = %d and max = %d", cap.mMinFrameRate, cap.mMaxFrameRate);
109}
110
111/*static*/ void
112MediaProfiles::logAudioEncoderCap(const MediaProfiles::AudioEncoderCap& cap)
113{
114 LOGV("audio encoder cap:");
115 LOGV("codec = %d", cap.mCodec);
116 LOGV("bit rate: min = %d and max = %d", cap.mMinBitRate, cap.mMaxBitRate);
117 LOGV("sample rate: min = %d and max = %d", cap.mMinSampleRate, cap.mMaxSampleRate);
118 LOGV("number of channels: min = %d and max = %d", cap.mMinChannels, cap.mMaxChannels);
119}
120
121/*static*/ void
122MediaProfiles::logVideoDecoderCap(const MediaProfiles::VideoDecoderCap& cap)
123{
124 LOGV("video decoder cap:");
125 LOGV("codec = %d", cap.mCodec);
126}
127
128/*static*/ void
129MediaProfiles::logAudioDecoderCap(const MediaProfiles::AudioDecoderCap& cap)
130{
131 LOGV("audio codec cap:");
132 LOGV("codec = %d", cap.mCodec);
133}
134
135/*static*/ int
136MediaProfiles::findTagForName(const MediaProfiles::NameToTagMap *map, size_t nMappings, const char *name)
137{
138 int tag = -1;
139 for (size_t i = 0; i < nMappings; ++i) {
140 if (!strcmp(map[i].name, name)) {
141 tag = map[i].tag;
142 break;
143 }
144 }
145 return tag;
146}
147
148/*static*/ MediaProfiles::VideoCodec*
149MediaProfiles::createVideoCodec(const char **atts, MediaProfiles *profiles)
150{
151 CHECK(!strcmp("codec", atts[0]) &&
152 !strcmp("bitRate", atts[2]) &&
153 !strcmp("width", atts[4]) &&
154 !strcmp("height", atts[6]) &&
155 !strcmp("frameRate", atts[8]));
156
157 const size_t nMappings = sizeof(sVideoEncoderNameMap)/sizeof(sVideoEncoderNameMap[0]);
158 const int codec = findTagForName(sVideoEncoderNameMap, nMappings, atts[1]);
159 CHECK(codec != -1);
160
161 MediaProfiles::VideoCodec *videoCodec =
162 new MediaProfiles::VideoCodec(static_cast<video_encoder>(codec),
163 atoi(atts[3]), atoi(atts[5]), atoi(atts[7]), atoi(atts[9]));
164 logVideoCodec(*videoCodec);
165
166 size_t nCamcorderProfiles;
167 CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1);
168 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mVideoCodec = videoCodec;
169 return videoCodec;
170}
171
172/*static*/ MediaProfiles::AudioCodec*
173MediaProfiles::createAudioCodec(const char **atts, MediaProfiles *profiles)
174{
175 CHECK(!strcmp("codec", atts[0]) &&
176 !strcmp("bitRate", atts[2]) &&
177 !strcmp("sampleRate", atts[4]) &&
178 !strcmp("channels", atts[6]));
179 const size_t nMappings = sizeof(sAudioEncoderNameMap)/sizeof(sAudioEncoderNameMap[0]);
180 const int codec = findTagForName(sAudioEncoderNameMap, nMappings, atts[1]);
181 CHECK(codec != -1);
182
183 MediaProfiles::AudioCodec *audioCodec =
184 new MediaProfiles::AudioCodec(static_cast<audio_encoder>(codec),
185 atoi(atts[3]), atoi(atts[5]), atoi(atts[7]));
186 logAudioCodec(*audioCodec);
187
188 size_t nCamcorderProfiles;
189 CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1);
190 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mAudioCodec = audioCodec;
191 return audioCodec;
192}
193/*static*/ MediaProfiles::AudioDecoderCap*
194MediaProfiles::createAudioDecoderCap(const char **atts)
195{
196 CHECK(!strcmp("name", atts[0]) &&
197 !strcmp("enabled", atts[2]));
198
199 const size_t nMappings = sizeof(sAudioDecoderNameMap)/sizeof(sAudioDecoderNameMap[0]);
200 const int codec = findTagForName(sAudioDecoderNameMap, nMappings, atts[1]);
201 CHECK(codec != -1);
202
203 MediaProfiles::AudioDecoderCap *cap =
204 new MediaProfiles::AudioDecoderCap(static_cast<audio_decoder>(codec));
205 logAudioDecoderCap(*cap);
206 return cap;
207}
208
209/*static*/ MediaProfiles::VideoDecoderCap*
210MediaProfiles::createVideoDecoderCap(const char **atts)
211{
212 CHECK(!strcmp("name", atts[0]) &&
213 !strcmp("enabled", atts[2]));
214
215 const size_t nMappings = sizeof(sVideoDecoderNameMap)/sizeof(sVideoDecoderNameMap[0]);
216 const int codec = findTagForName(sVideoDecoderNameMap, nMappings, atts[1]);
217 CHECK(codec != -1);
218
219 MediaProfiles::VideoDecoderCap *cap =
220 new MediaProfiles::VideoDecoderCap(static_cast<video_decoder>(codec));
221 logVideoDecoderCap(*cap);
222 return cap;
223}
224
225/*static*/ MediaProfiles::VideoEncoderCap*
226MediaProfiles::createVideoEncoderCap(const char **atts)
227{
228 CHECK(!strcmp("name", atts[0]) &&
229 !strcmp("enabled", atts[2]) &&
230 !strcmp("minBitRate", atts[4]) &&
231 !strcmp("maxBitRate", atts[6]) &&
232 !strcmp("minFrameWidth", atts[8]) &&
233 !strcmp("maxFrameWidth", atts[10]) &&
234 !strcmp("minFrameHeight", atts[12]) &&
235 !strcmp("maxFrameHeight", atts[14]) &&
236 !strcmp("minFrameRate", atts[16]) &&
237 !strcmp("maxFrameRate", atts[18]));
238
239 const size_t nMappings = sizeof(sVideoEncoderNameMap)/sizeof(sVideoEncoderNameMap[0]);
240 const int codec = findTagForName(sVideoEncoderNameMap, nMappings, atts[1]);
241 CHECK(codec != -1);
242
243 MediaProfiles::VideoEncoderCap *cap =
244 new MediaProfiles::VideoEncoderCap(static_cast<video_encoder>(codec),
245 atoi(atts[5]), atoi(atts[7]), atoi(atts[9]), atoi(atts[11]), atoi(atts[13]),
246 atoi(atts[15]), atoi(atts[17]), atoi(atts[19]));
247 logVideoEncoderCap(*cap);
248 return cap;
249}
250
251/*static*/ MediaProfiles::AudioEncoderCap*
252MediaProfiles::createAudioEncoderCap(const char **atts)
253{
254 CHECK(!strcmp("name", atts[0]) &&
255 !strcmp("enabled", atts[2]) &&
256 !strcmp("minBitRate", atts[4]) &&
257 !strcmp("maxBitRate", atts[6]) &&
258 !strcmp("minSampleRate", atts[8]) &&
259 !strcmp("maxSampleRate", atts[10]) &&
260 !strcmp("minChannels", atts[12]) &&
261 !strcmp("maxChannels", atts[14]));
262
263 const size_t nMappings = sizeof(sAudioEncoderNameMap)/sizeof(sAudioEncoderNameMap[0]);
264 const int codec = findTagForName(sAudioEncoderNameMap, nMappings, atts[1]);
265 CHECK(codec != -1);
266
267 MediaProfiles::AudioEncoderCap *cap =
268 new MediaProfiles::AudioEncoderCap(static_cast<audio_encoder>(codec), atoi(atts[5]), atoi(atts[7]),
269 atoi(atts[9]), atoi(atts[11]), atoi(atts[13]),
270 atoi(atts[15]));
271 logAudioEncoderCap(*cap);
272 return cap;
273}
274
275/*static*/ output_format
276MediaProfiles::createEncoderOutputFileFormat(const char **atts)
277{
278 CHECK(!strcmp("name", atts[0]));
279
280 const size_t nMappings =sizeof(sFileFormatMap)/sizeof(sFileFormatMap[0]);
281 const int format = findTagForName(sFileFormatMap, nMappings, atts[1]);
282 CHECK(format != -1);
283
284 return static_cast<output_format>(format);
285}
286
James Dong797e4f12011-02-28 21:07:39 -0800287static bool isCameraIdFound(int cameraId, const Vector<int>& cameraIds) {
288 for (int i = 0, n = cameraIds.size(); i < n; ++i) {
289 if (cameraId == cameraIds[i]) {
290 return true;
291 }
292 }
293 return false;
294}
295
James Dongc3711942010-01-19 17:45:38 -0800296/*static*/ MediaProfiles::CamcorderProfile*
James Dong797e4f12011-02-28 21:07:39 -0800297MediaProfiles::createCamcorderProfile(int cameraId, const char **atts, Vector<int>& cameraIds)
James Dongc3711942010-01-19 17:45:38 -0800298{
299 CHECK(!strcmp("quality", atts[0]) &&
300 !strcmp("fileFormat", atts[2]) &&
301 !strcmp("duration", atts[4]));
302
303 const size_t nProfileMappings = sizeof(sCamcorderQualityNameMap)/sizeof(sCamcorderQualityNameMap[0]);
304 const int quality = findTagForName(sCamcorderQualityNameMap, nProfileMappings, atts[1]);
305 CHECK(quality != -1);
306
307 const size_t nFormatMappings = sizeof(sFileFormatMap)/sizeof(sFileFormatMap[0]);
308 const int fileFormat = findTagForName(sFileFormatMap, nFormatMappings, atts[3]);
309 CHECK(fileFormat != -1);
310
311 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile;
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800312 profile->mCameraId = cameraId;
James Dong797e4f12011-02-28 21:07:39 -0800313 if (!isCameraIdFound(cameraId, cameraIds)) {
314 cameraIds.add(cameraId);
315 }
James Dongc3711942010-01-19 17:45:38 -0800316 profile->mFileFormat = static_cast<output_format>(fileFormat);
317 profile->mQuality = static_cast<camcorder_quality>(quality);
318 profile->mDuration = atoi(atts[5]);
319 return profile;
320}
321
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800322MediaProfiles::ImageEncodingQualityLevels*
323MediaProfiles::findImageEncodingQualityLevels(int cameraId) const
324{
325 int n = mImageEncodingQualityLevels.size();
326 for (int i = 0; i < n; i++) {
327 ImageEncodingQualityLevels *levels = mImageEncodingQualityLevels[i];
328 if (levels->mCameraId == cameraId) {
329 return levels;
330 }
331 }
332 return NULL;
333}
334
335void MediaProfiles::addImageEncodingQualityLevel(int cameraId, const char** atts)
James Dong9b433f02010-02-23 17:21:44 -0800336{
337 CHECK(!strcmp("quality", atts[0]));
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800338 int quality = atoi(atts[1]);
339 LOGV("%s: cameraId=%d, quality=%d\n", __func__, cameraId, quality);
340 ImageEncodingQualityLevels *levels = findImageEncodingQualityLevels(cameraId);
341
342 if (levels == NULL) {
343 levels = new ImageEncodingQualityLevels();
344 levels->mCameraId = cameraId;
345 mImageEncodingQualityLevels.add(levels);
346 }
347
348 levels->mLevels.add(quality);
349}
350
351/*static*/ int
352MediaProfiles::getCameraId(const char** atts)
353{
354 if (!atts[0]) return 0; // default cameraId = 0
355 CHECK(!strcmp("cameraId", atts[0]));
James Dong9b433f02010-02-23 17:21:44 -0800356 return atoi(atts[1]);
357}
358
James Dongc3711942010-01-19 17:45:38 -0800359/*static*/ void
360MediaProfiles::startElementHandler(void *userData, const char *name, const char **atts)
361{
362 MediaProfiles *profiles = (MediaProfiles *) userData;
363 if (strcmp("Video", name) == 0) {
364 createVideoCodec(atts, profiles);
365 } else if (strcmp("Audio", name) == 0) {
366 createAudioCodec(atts, profiles);
367 } else if (strcmp("VideoEncoderCap", name) == 0 &&
368 strcmp("true", atts[3]) == 0) {
369 profiles->mVideoEncoders.add(createVideoEncoderCap(atts));
370 } else if (strcmp("AudioEncoderCap", name) == 0 &&
371 strcmp("true", atts[3]) == 0) {
372 profiles->mAudioEncoders.add(createAudioEncoderCap(atts));
373 } else if (strcmp("VideoDecoderCap", name) == 0 &&
374 strcmp("true", atts[3]) == 0) {
375 profiles->mVideoDecoders.add(createVideoDecoderCap(atts));
376 } else if (strcmp("AudioDecoderCap", name) == 0 &&
377 strcmp("true", atts[3]) == 0) {
378 profiles->mAudioDecoders.add(createAudioDecoderCap(atts));
379 } else if (strcmp("EncoderOutputFileFormat", name) == 0) {
380 profiles->mEncoderOutputFileFormats.add(createEncoderOutputFileFormat(atts));
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800381 } else if (strcmp("CamcorderProfiles", name) == 0) {
382 profiles->mCurrentCameraId = getCameraId(atts);
James Dongc3711942010-01-19 17:45:38 -0800383 } else if (strcmp("EncoderProfile", name) == 0) {
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800384 profiles->mCamcorderProfiles.add(
James Dong797e4f12011-02-28 21:07:39 -0800385 createCamcorderProfile(profiles->mCurrentCameraId, atts, profiles->mCameraIds));
James Dong9b433f02010-02-23 17:21:44 -0800386 } else if (strcmp("ImageEncoding", name) == 0) {
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800387 profiles->addImageEncodingQualityLevel(profiles->mCurrentCameraId, atts);
James Dongc3711942010-01-19 17:45:38 -0800388 }
389}
390
James Dong797e4f12011-02-28 21:07:39 -0800391static bool isCamcorderProfile(camcorder_quality quality) {
392 return quality >= CAMCORDER_QUALITY_LIST_START &&
393 quality <= CAMCORDER_QUALITY_LIST_END;
394}
395
396static bool isTimelapseProfile(camcorder_quality quality) {
397 return quality >= CAMCORDER_QUALITY_TIME_LAPSE_LIST_START &&
398 quality <= CAMCORDER_QUALITY_TIME_LAPSE_LIST_END;
399}
400
401void MediaProfiles::initRequiredProfileRefs(const Vector<int>& cameraIds) {
402 LOGV("Number of camera ids: %d", cameraIds.size());
403 CHECK(cameraIds.size() > 0);
404 mRequiredProfileRefs = new RequiredProfiles[cameraIds.size()];
405 for (size_t i = 0, n = cameraIds.size(); i < n; ++i) {
406 mRequiredProfileRefs[i].mCameraId = cameraIds[i];
407 for (size_t j = 0; j < kNumRequiredProfiles; ++j) {
408 mRequiredProfileRefs[i].mRefs[j].mHasRefProfile = false;
409 mRequiredProfileRefs[i].mRefs[j].mRefProfileIndex = -1;
410 if ((j & 1) == 0) { // low resolution
411 mRequiredProfileRefs[i].mRefs[j].mResolutionProduct = 0x7FFFFFFF;
412 } else { // high resolution
413 mRequiredProfileRefs[i].mRefs[j].mResolutionProduct = 0;
414 }
415 }
416 }
417}
418
419int MediaProfiles::getRequiredProfileRefIndex(int cameraId) {
420 for (size_t i = 0, n = mCameraIds.size(); i < n; ++i) {
421 if (mCameraIds[i] == cameraId) {
422 return i;
423 }
424 }
425 return -1;
426}
427
428void MediaProfiles::checkAndAddRequiredProfilesIfNecessary() {
429 if (sIsInitialized) {
430 return;
431 }
432
433 initRequiredProfileRefs(mCameraIds);
434
435 for (size_t i = 0, n = mCamcorderProfiles.size(); i < n; ++i) {
436 int product = mCamcorderProfiles[i]->mVideoCodec->mFrameWidth *
437 mCamcorderProfiles[i]->mVideoCodec->mFrameHeight;
438
439 camcorder_quality quality = mCamcorderProfiles[i]->mQuality;
440 int cameraId = mCamcorderProfiles[i]->mCameraId;
441 int index = -1;
442 int refIndex = getRequiredProfileRefIndex(cameraId);
443 CHECK(refIndex != -1);
444 RequiredProfileRefInfo *info;
445 camcorder_quality refQuality;
446 VideoCodec *codec = NULL;
447
448 // Check high and low from either camcorder profile or timelapse profile
449 // but not both. Default, check camcorder profile
450 size_t j = 0;
451 size_t n = 2;
452 if (isTimelapseProfile(quality)) {
453 // Check timelapse profile instead.
454 j = 2;
455 n = kNumRequiredProfiles;
456 } else {
457 // Must be camcorder profile.
458 CHECK(isCamcorderProfile(quality));
459 }
460 for (; j < n; ++j) {
461 info = &(mRequiredProfileRefs[refIndex].mRefs[j]);
462 if ((j % 2 == 0 && product > info->mResolutionProduct) || // low
463 (j % 2 != 0 && product < info->mResolutionProduct)) { // high
464 continue;
465 }
466 switch (j) {
467 case 0:
468 refQuality = CAMCORDER_QUALITY_LOW;
469 break;
470 case 1:
471 refQuality = CAMCORDER_QUALITY_HIGH;
472 break;
473 case 2:
474 refQuality = CAMCORDER_QUALITY_TIME_LAPSE_LOW;
475 break;
476 case 3:
477 refQuality = CAMCORDER_QUALITY_TIME_LAPSE_HIGH;
478 break;
479 default:
480 CHECK(!"Should never reach here");
481 }
482
483 if (!info->mHasRefProfile) {
484 index = getCamcorderProfileIndex(cameraId, refQuality);
485 }
486 if (index == -1) {
487 // New high or low quality profile is found.
488 // Update its reference.
489 info->mHasRefProfile = true;
490 info->mRefProfileIndex = i;
491 info->mResolutionProduct = product;
492 }
493 }
494 }
495
496 for (size_t cameraId = 0; cameraId < mCameraIds.size(); ++cameraId) {
497 for (size_t j = 0; j < kNumRequiredProfiles; ++j) {
498 int refIndex = getRequiredProfileRefIndex(cameraId);
499 CHECK(refIndex != -1);
500 RequiredProfileRefInfo *info =
501 &mRequiredProfileRefs[refIndex].mRefs[j];
502
503 if (info->mHasRefProfile) {
504
505 CamcorderProfile *profile =
506 new CamcorderProfile(
507 *mCamcorderProfiles[info->mRefProfileIndex]);
508
509 // Overwrite the quality
510 switch (j % kNumRequiredProfiles) {
511 case 0:
512 profile->mQuality = CAMCORDER_QUALITY_LOW;
513 break;
514 case 1:
515 profile->mQuality = CAMCORDER_QUALITY_HIGH;
516 break;
517 case 2:
518 profile->mQuality = CAMCORDER_QUALITY_TIME_LAPSE_LOW;
519 break;
520 case 3:
521 profile->mQuality = CAMCORDER_QUALITY_TIME_LAPSE_HIGH;
522 break;
523 default:
524 CHECK(!"Should never come here");
525 }
526
527 int index = getCamcorderProfileIndex(cameraId, profile->mQuality);
528 if (index != -1) {
529 LOGV("Profile quality %d for camera %d already exists",
530 profile->mQuality, cameraId);
531 CHECK(index == refIndex);
532 continue;
533 }
534
535 // Insert the new profile
536 LOGV("Add a profile: quality %d=>%d for camera %d",
537 mCamcorderProfiles[info->mRefProfileIndex]->mQuality,
538 profile->mQuality, cameraId);
539
540 mCamcorderProfiles.add(profile);
541 }
542 }
543 }
544}
545
James Dongc3711942010-01-19 17:45:38 -0800546/*static*/ MediaProfiles*
547MediaProfiles::getInstance()
548{
549 LOGV("getInstance");
550 Mutex::Autolock lock(sLock);
551 if (!sIsInitialized) {
552 char value[PROPERTY_VALUE_MAX];
553 if (property_get("media.settings.xml", value, NULL) <= 0) {
554 const char *defaultXmlFile = "/etc/media_profiles.xml";
555 FILE *fp = fopen(defaultXmlFile, "r");
556 if (fp == NULL) {
557 LOGW("could not find media config xml file");
558 sInstance = createDefaultInstance();
559 } else {
560 fclose(fp); // close the file first.
561 sInstance = createInstanceFromXmlFile(defaultXmlFile);
562 }
563 } else {
564 sInstance = createInstanceFromXmlFile(value);
565 }
James Dong797e4f12011-02-28 21:07:39 -0800566 CHECK(sInstance != NULL);
567 sInstance->checkAndAddRequiredProfilesIfNecessary();
568 sIsInitialized = true;
James Dongc3711942010-01-19 17:45:38 -0800569 }
570
571 return sInstance;
572}
573
574/*static*/ MediaProfiles::VideoEncoderCap*
575MediaProfiles::createDefaultH263VideoEncoderCap()
576{
577 return new MediaProfiles::VideoEncoderCap(
578 VIDEO_ENCODER_H263, 192000, 420000, 176, 352, 144, 288, 1, 20);
579}
580
581/*static*/ MediaProfiles::VideoEncoderCap*
582MediaProfiles::createDefaultM4vVideoEncoderCap()
583{
584 return new MediaProfiles::VideoEncoderCap(
585 VIDEO_ENCODER_MPEG_4_SP, 192000, 420000, 176, 352, 144, 288, 1, 20);
586}
587
588
589/*static*/ void
590MediaProfiles::createDefaultVideoEncoders(MediaProfiles *profiles)
591{
592 profiles->mVideoEncoders.add(createDefaultH263VideoEncoderCap());
593 profiles->mVideoEncoders.add(createDefaultM4vVideoEncoderCap());
594}
595
596/*static*/ MediaProfiles::CamcorderProfile*
Nipun Kwatrad48a15c2010-09-16 22:25:23 -0700597MediaProfiles::createDefaultCamcorderTimeLapseQcifProfile(camcorder_quality quality)
Nipun Kwatra4af0dfd2010-09-06 15:59:02 -0700598{
599 MediaProfiles::VideoCodec *videoCodec =
600 new MediaProfiles::VideoCodec(VIDEO_ENCODER_H263, 1000000, 176, 144, 20);
601
602 AudioCodec *audioCodec = new AudioCodec(AUDIO_ENCODER_AMR_NB, 12200, 8000, 1);
603 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile;
604 profile->mCameraId = 0;
605 profile->mFileFormat = OUTPUT_FORMAT_THREE_GPP;
Nipun Kwatrad48a15c2010-09-16 22:25:23 -0700606 profile->mQuality = quality;
Nipun Kwatra4af0dfd2010-09-06 15:59:02 -0700607 profile->mDuration = 60;
608 profile->mVideoCodec = videoCodec;
609 profile->mAudioCodec = audioCodec;
610 return profile;
611}
612
613/*static*/ MediaProfiles::CamcorderProfile*
Nipun Kwatrad48a15c2010-09-16 22:25:23 -0700614MediaProfiles::createDefaultCamcorderTimeLapse480pProfile(camcorder_quality quality)
James Dongc3711942010-01-19 17:45:38 -0800615{
616 MediaProfiles::VideoCodec *videoCodec =
Nipun Kwatrad48a15c2010-09-16 22:25:23 -0700617 new MediaProfiles::VideoCodec(VIDEO_ENCODER_H263, 20000000, 720, 480, 20);
James Dongc3711942010-01-19 17:45:38 -0800618
619 AudioCodec *audioCodec = new AudioCodec(AUDIO_ENCODER_AMR_NB, 12200, 8000, 1);
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800620 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile;
621 profile->mCameraId = 0;
James Dongc3711942010-01-19 17:45:38 -0800622 profile->mFileFormat = OUTPUT_FORMAT_THREE_GPP;
Nipun Kwatrad48a15c2010-09-16 22:25:23 -0700623 profile->mQuality = quality;
James Dongc3711942010-01-19 17:45:38 -0800624 profile->mDuration = 60;
625 profile->mVideoCodec = videoCodec;
626 profile->mAudioCodec = audioCodec;
627 return profile;
628}
629
Nipun Kwatrad48a15c2010-09-16 22:25:23 -0700630/*static*/ void
631MediaProfiles::createDefaultCamcorderTimeLapseLowProfiles(
632 MediaProfiles::CamcorderProfile **lowTimeLapseProfile,
633 MediaProfiles::CamcorderProfile **lowSpecificTimeLapseProfile) {
634 *lowTimeLapseProfile = createDefaultCamcorderTimeLapseQcifProfile(CAMCORDER_QUALITY_TIME_LAPSE_LOW);
635 *lowSpecificTimeLapseProfile = createDefaultCamcorderTimeLapseQcifProfile(CAMCORDER_QUALITY_TIME_LAPSE_QCIF);
636}
637
638/*static*/ void
639MediaProfiles::createDefaultCamcorderTimeLapseHighProfiles(
640 MediaProfiles::CamcorderProfile **highTimeLapseProfile,
641 MediaProfiles::CamcorderProfile **highSpecificTimeLapseProfile) {
642 *highTimeLapseProfile = createDefaultCamcorderTimeLapse480pProfile(CAMCORDER_QUALITY_TIME_LAPSE_HIGH);
643 *highSpecificTimeLapseProfile = createDefaultCamcorderTimeLapse480pProfile(CAMCORDER_QUALITY_TIME_LAPSE_480P);
644}
645
James Dongc3711942010-01-19 17:45:38 -0800646/*static*/ MediaProfiles::CamcorderProfile*
Nipun Kwatrad48a15c2010-09-16 22:25:23 -0700647MediaProfiles::createDefaultCamcorderQcifProfile(camcorder_quality quality)
James Dongc3711942010-01-19 17:45:38 -0800648{
649 MediaProfiles::VideoCodec *videoCodec =
650 new MediaProfiles::VideoCodec(VIDEO_ENCODER_H263, 192000, 176, 144, 20);
651
652 MediaProfiles::AudioCodec *audioCodec =
653 new MediaProfiles::AudioCodec(AUDIO_ENCODER_AMR_NB, 12200, 8000, 1);
654
655 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile;
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800656 profile->mCameraId = 0;
James Dongc3711942010-01-19 17:45:38 -0800657 profile->mFileFormat = OUTPUT_FORMAT_THREE_GPP;
Nipun Kwatrad48a15c2010-09-16 22:25:23 -0700658 profile->mQuality = quality;
James Dongc3711942010-01-19 17:45:38 -0800659 profile->mDuration = 30;
660 profile->mVideoCodec = videoCodec;
661 profile->mAudioCodec = audioCodec;
662 return profile;
663}
664
Nipun Kwatrad48a15c2010-09-16 22:25:23 -0700665/*static*/ MediaProfiles::CamcorderProfile*
666MediaProfiles::createDefaultCamcorderCifProfile(camcorder_quality quality)
667{
668 MediaProfiles::VideoCodec *videoCodec =
669 new MediaProfiles::VideoCodec(VIDEO_ENCODER_H263, 360000, 352, 288, 20);
670
671 AudioCodec *audioCodec = new AudioCodec(AUDIO_ENCODER_AMR_NB, 12200, 8000, 1);
672 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile;
673 profile->mCameraId = 0;
674 profile->mFileFormat = OUTPUT_FORMAT_THREE_GPP;
675 profile->mQuality = quality;
676 profile->mDuration = 60;
677 profile->mVideoCodec = videoCodec;
678 profile->mAudioCodec = audioCodec;
679 return profile;
680}
681
682/*static*/ void
683MediaProfiles::createDefaultCamcorderLowProfiles(
684 MediaProfiles::CamcorderProfile **lowProfile,
685 MediaProfiles::CamcorderProfile **lowSpecificProfile) {
686 *lowProfile = createDefaultCamcorderQcifProfile(CAMCORDER_QUALITY_LOW);
687 *lowSpecificProfile = createDefaultCamcorderQcifProfile(CAMCORDER_QUALITY_QCIF);
688}
689
690/*static*/ void
691MediaProfiles::createDefaultCamcorderHighProfiles(
692 MediaProfiles::CamcorderProfile **highProfile,
693 MediaProfiles::CamcorderProfile **highSpecificProfile) {
694 *highProfile = createDefaultCamcorderCifProfile(CAMCORDER_QUALITY_HIGH);
695 *highSpecificProfile = createDefaultCamcorderCifProfile(CAMCORDER_QUALITY_CIF);
696}
697
James Dongc3711942010-01-19 17:45:38 -0800698/*static*/ void
699MediaProfiles::createDefaultCamcorderProfiles(MediaProfiles *profiles)
700{
Nipun Kwatrad48a15c2010-09-16 22:25:23 -0700701 // low camcorder profiles.
702 MediaProfiles::CamcorderProfile *lowProfile, *lowSpecificProfile;
703 createDefaultCamcorderLowProfiles(&lowProfile, &lowSpecificProfile);
704 profiles->mCamcorderProfiles.add(lowProfile);
705 profiles->mCamcorderProfiles.add(lowSpecificProfile);
706
707 // high camcorder profiles.
708 MediaProfiles::CamcorderProfile* highProfile, *highSpecificProfile;
709 createDefaultCamcorderHighProfiles(&highProfile, &highSpecificProfile);
710 profiles->mCamcorderProfiles.add(highProfile);
711 profiles->mCamcorderProfiles.add(highSpecificProfile);
712
713 // low camcorder time lapse profiles.
714 MediaProfiles::CamcorderProfile *lowTimeLapseProfile, *lowSpecificTimeLapseProfile;
715 createDefaultCamcorderTimeLapseLowProfiles(&lowTimeLapseProfile, &lowSpecificTimeLapseProfile);
716 profiles->mCamcorderProfiles.add(lowTimeLapseProfile);
717 profiles->mCamcorderProfiles.add(lowSpecificTimeLapseProfile);
718
719 // high camcorder time lapse profiles.
720 MediaProfiles::CamcorderProfile *highTimeLapseProfile, *highSpecificTimeLapseProfile;
721 createDefaultCamcorderTimeLapseHighProfiles(&highTimeLapseProfile, &highSpecificTimeLapseProfile);
722 profiles->mCamcorderProfiles.add(highTimeLapseProfile);
723 profiles->mCamcorderProfiles.add(highSpecificTimeLapseProfile);
James Dong6ec0ca92011-03-16 14:09:50 -0700724
725 // For emulator and other legacy devices which does not have a
726 // media_profiles.xml file, We assume that the default camera id
727 // is 0 and that is the only camera available.
728 profiles->mCameraIds.push(0);
James Dongc3711942010-01-19 17:45:38 -0800729}
730
731/*static*/ void
732MediaProfiles::createDefaultAudioEncoders(MediaProfiles *profiles)
733{
734 profiles->mAudioEncoders.add(createDefaultAmrNBEncoderCap());
735}
736
737/*static*/ void
738MediaProfiles::createDefaultVideoDecoders(MediaProfiles *profiles)
739{
740 MediaProfiles::VideoDecoderCap *cap =
741 new MediaProfiles::VideoDecoderCap(VIDEO_DECODER_WMV);
742
743 profiles->mVideoDecoders.add(cap);
744}
745
746/*static*/ void
747MediaProfiles::createDefaultAudioDecoders(MediaProfiles *profiles)
748{
749 MediaProfiles::AudioDecoderCap *cap =
750 new MediaProfiles::AudioDecoderCap(AUDIO_DECODER_WMA);
751
752 profiles->mAudioDecoders.add(cap);
753}
754
755/*static*/ void
756MediaProfiles::createDefaultEncoderOutputFileFormats(MediaProfiles *profiles)
757{
758 profiles->mEncoderOutputFileFormats.add(OUTPUT_FORMAT_THREE_GPP);
759 profiles->mEncoderOutputFileFormats.add(OUTPUT_FORMAT_MPEG_4);
760}
761
762/*static*/ MediaProfiles::AudioEncoderCap*
763MediaProfiles::createDefaultAmrNBEncoderCap()
764{
765 return new MediaProfiles::AudioEncoderCap(
766 AUDIO_ENCODER_AMR_NB, 5525, 12200, 8000, 8000, 1, 1);
767}
768
James Dong9b433f02010-02-23 17:21:44 -0800769/*static*/ void
770MediaProfiles::createDefaultImageEncodingQualityLevels(MediaProfiles *profiles)
771{
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800772 ImageEncodingQualityLevels *levels = new ImageEncodingQualityLevels();
773 levels->mCameraId = 0;
774 levels->mLevels.add(70);
775 levels->mLevels.add(80);
776 levels->mLevels.add(90);
777 profiles->mImageEncodingQualityLevels.add(levels);
James Dong9b433f02010-02-23 17:21:44 -0800778}
779
James Dongc3711942010-01-19 17:45:38 -0800780/*static*/ MediaProfiles*
781MediaProfiles::createDefaultInstance()
782{
783 MediaProfiles *profiles = new MediaProfiles;
784 createDefaultCamcorderProfiles(profiles);
785 createDefaultVideoEncoders(profiles);
786 createDefaultAudioEncoders(profiles);
787 createDefaultVideoDecoders(profiles);
788 createDefaultAudioDecoders(profiles);
789 createDefaultEncoderOutputFileFormats(profiles);
James Dong9b433f02010-02-23 17:21:44 -0800790 createDefaultImageEncodingQualityLevels(profiles);
James Dongc3711942010-01-19 17:45:38 -0800791 return profiles;
792}
793
794/*static*/ MediaProfiles*
795MediaProfiles::createInstanceFromXmlFile(const char *xml)
796{
797 FILE *fp = NULL;
798 CHECK((fp = fopen(xml, "r")));
799
800 XML_Parser parser = ::XML_ParserCreate(NULL);
801 CHECK(parser != NULL);
802
803 MediaProfiles *profiles = new MediaProfiles();
804 ::XML_SetUserData(parser, profiles);
805 ::XML_SetElementHandler(parser, startElementHandler, NULL);
806
807 /*
808 FIXME:
809 expat is not compiled with -DXML_DTD. We don't have DTD parsing support.
810
811 if (!::XML_SetParamEntityParsing(parser, XML_PARAM_ENTITY_PARSING_ALWAYS)) {
812 LOGE("failed to enable DTD support in the xml file");
813 return UNKNOWN_ERROR;
814 }
815
816 */
817
818 const int BUFF_SIZE = 512;
819 for (;;) {
820 void *buff = ::XML_GetBuffer(parser, BUFF_SIZE);
821 if (buff == NULL) {
822 LOGE("failed to in call to XML_GetBuffer()");
823 delete profiles;
824 profiles = NULL;
825 goto exit;
826 }
827
828 int bytes_read = ::fread(buff, 1, BUFF_SIZE, fp);
829 if (bytes_read < 0) {
830 LOGE("failed in call to read");
831 delete profiles;
832 profiles = NULL;
833 goto exit;
834 }
835
836 CHECK(::XML_ParseBuffer(parser, bytes_read, bytes_read == 0));
837
838 if (bytes_read == 0) break; // done parsing the xml file
839 }
840
841exit:
842 ::XML_ParserFree(parser);
843 ::fclose(fp);
James Dongc3711942010-01-19 17:45:38 -0800844 return profiles;
845}
846
847Vector<output_format> MediaProfiles::getOutputFileFormats() const
848{
849 return mEncoderOutputFileFormats; // copy out
850}
851
852Vector<video_encoder> MediaProfiles::getVideoEncoders() const
853{
854 Vector<video_encoder> encoders;
855 for (size_t i = 0; i < mVideoEncoders.size(); ++i) {
856 encoders.add(mVideoEncoders[i]->mCodec);
857 }
858 return encoders; // copy out
859}
860
861int MediaProfiles::getVideoEncoderParamByName(const char *name, video_encoder codec) const
862{
863 LOGV("getVideoEncoderParamByName: %s for codec %d", name, codec);
864 int index = -1;
865 for (size_t i = 0, n = mVideoEncoders.size(); i < n; ++i) {
866 if (mVideoEncoders[i]->mCodec == codec) {
867 index = i;
868 break;
869 }
870 }
871 if (index == -1) {
872 LOGE("The given video encoder %d is not found", codec);
873 return -1;
874 }
875
876 if (!strcmp("enc.vid.width.min", name)) return mVideoEncoders[index]->mMinFrameWidth;
877 if (!strcmp("enc.vid.width.max", name)) return mVideoEncoders[index]->mMaxFrameWidth;
878 if (!strcmp("enc.vid.height.min", name)) return mVideoEncoders[index]->mMinFrameHeight;
879 if (!strcmp("enc.vid.height.max", name)) return mVideoEncoders[index]->mMaxFrameHeight;
880 if (!strcmp("enc.vid.bps.min", name)) return mVideoEncoders[index]->mMinBitRate;
881 if (!strcmp("enc.vid.bps.max", name)) return mVideoEncoders[index]->mMaxBitRate;
882 if (!strcmp("enc.vid.fps.min", name)) return mVideoEncoders[index]->mMinFrameRate;
883 if (!strcmp("enc.vid.fps.max", name)) return mVideoEncoders[index]->mMaxFrameRate;
884
885 LOGE("The given video encoder param name %s is not found", name);
886 return -1;
887}
888
889Vector<audio_encoder> MediaProfiles::getAudioEncoders() const
890{
891 Vector<audio_encoder> encoders;
892 for (size_t i = 0; i < mAudioEncoders.size(); ++i) {
893 encoders.add(mAudioEncoders[i]->mCodec);
894 }
895 return encoders; // copy out
896}
897
898int MediaProfiles::getAudioEncoderParamByName(const char *name, audio_encoder codec) const
899{
900 LOGV("getAudioEncoderParamByName: %s for codec %d", name, codec);
901 int index = -1;
902 for (size_t i = 0, n = mAudioEncoders.size(); i < n; ++i) {
903 if (mAudioEncoders[i]->mCodec == codec) {
904 index = i;
905 break;
906 }
907 }
908 if (index == -1) {
909 LOGE("The given audio encoder %d is not found", codec);
910 return -1;
911 }
912
913 if (!strcmp("enc.aud.ch.min", name)) return mAudioEncoders[index]->mMinChannels;
914 if (!strcmp("enc.aud.ch.max", name)) return mAudioEncoders[index]->mMaxChannels;
915 if (!strcmp("enc.aud.bps.min", name)) return mAudioEncoders[index]->mMinBitRate;
916 if (!strcmp("enc.aud.bps.max", name)) return mAudioEncoders[index]->mMaxBitRate;
917 if (!strcmp("enc.aud.hz.min", name)) return mAudioEncoders[index]->mMinSampleRate;
918 if (!strcmp("enc.aud.hz.max", name)) return mAudioEncoders[index]->mMaxSampleRate;
919
920 LOGE("The given audio encoder param name %s is not found", name);
921 return -1;
922}
923
924Vector<video_decoder> MediaProfiles::getVideoDecoders() const
925{
926 Vector<video_decoder> decoders;
927 for (size_t i = 0; i < mVideoDecoders.size(); ++i) {
928 decoders.add(mVideoDecoders[i]->mCodec);
929 }
930 return decoders; // copy out
931}
932
933Vector<audio_decoder> MediaProfiles::getAudioDecoders() const
934{
935 Vector<audio_decoder> decoders;
936 for (size_t i = 0; i < mAudioDecoders.size(); ++i) {
937 decoders.add(mAudioDecoders[i]->mCodec);
938 }
939 return decoders; // copy out
940}
941
Nipun Kwatra9d619542010-09-09 16:25:08 -0700942int MediaProfiles::getCamcorderProfileIndex(int cameraId, camcorder_quality quality) const
James Dongc3711942010-01-19 17:45:38 -0800943{
James Dongc3711942010-01-19 17:45:38 -0800944 int index = -1;
945 for (size_t i = 0, n = mCamcorderProfiles.size(); i < n; ++i) {
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800946 if (mCamcorderProfiles[i]->mCameraId == cameraId &&
947 mCamcorderProfiles[i]->mQuality == quality) {
James Dongc3711942010-01-19 17:45:38 -0800948 index = i;
949 break;
950 }
951 }
Nipun Kwatra9d619542010-09-09 16:25:08 -0700952 return index;
953}
954
955int MediaProfiles::getCamcorderProfileParamByName(const char *name,
956 int cameraId,
957 camcorder_quality quality) const
958{
959 LOGV("getCamcorderProfileParamByName: %s for camera %d, quality %d",
960 name, cameraId, quality);
961
962 int index = getCamcorderProfileIndex(cameraId, quality);
James Dongc3711942010-01-19 17:45:38 -0800963 if (index == -1) {
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800964 LOGE("The given camcorder profile camera %d quality %d is not found",
965 cameraId, quality);
James Dongc3711942010-01-19 17:45:38 -0800966 return -1;
967 }
968
James Dong9b433f02010-02-23 17:21:44 -0800969 if (!strcmp("duration", name)) return mCamcorderProfiles[index]->mDuration;
James Dongc3711942010-01-19 17:45:38 -0800970 if (!strcmp("file.format", name)) return mCamcorderProfiles[index]->mFileFormat;
971 if (!strcmp("vid.codec", name)) return mCamcorderProfiles[index]->mVideoCodec->mCodec;
972 if (!strcmp("vid.width", name)) return mCamcorderProfiles[index]->mVideoCodec->mFrameWidth;
973 if (!strcmp("vid.height", name)) return mCamcorderProfiles[index]->mVideoCodec->mFrameHeight;
974 if (!strcmp("vid.bps", name)) return mCamcorderProfiles[index]->mVideoCodec->mBitRate;
975 if (!strcmp("vid.fps", name)) return mCamcorderProfiles[index]->mVideoCodec->mFrameRate;
976 if (!strcmp("aud.codec", name)) return mCamcorderProfiles[index]->mAudioCodec->mCodec;
977 if (!strcmp("aud.bps", name)) return mCamcorderProfiles[index]->mAudioCodec->mBitRate;
978 if (!strcmp("aud.ch", name)) return mCamcorderProfiles[index]->mAudioCodec->mChannels;
979 if (!strcmp("aud.hz", name)) return mCamcorderProfiles[index]->mAudioCodec->mSampleRate;
980
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800981 LOGE("The given camcorder profile param id %d name %s is not found", cameraId, name);
James Dongc3711942010-01-19 17:45:38 -0800982 return -1;
983}
984
Nipun Kwatra9d619542010-09-09 16:25:08 -0700985bool MediaProfiles::hasCamcorderProfile(int cameraId, camcorder_quality quality) const
986{
987 return (getCamcorderProfileIndex(cameraId, quality) != -1);
988}
989
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800990Vector<int> MediaProfiles::getImageEncodingQualityLevels(int cameraId) const
James Dong9b433f02010-02-23 17:21:44 -0800991{
Chih-Chung Chang09b90052010-06-22 20:50:55 +0800992 Vector<int> result;
993 ImageEncodingQualityLevels *levels = findImageEncodingQualityLevels(cameraId);
994 if (levels != NULL) {
995 result = levels->mLevels; // copy out
996 }
997 return result;
James Dong9b433f02010-02-23 17:21:44 -0800998}
999
James Dongc3711942010-01-19 17:45:38 -08001000MediaProfiles::~MediaProfiles()
1001{
1002 CHECK("destructor should never be called" == 0);
1003#if 0
1004 for (size_t i = 0; i < mAudioEncoders.size(); ++i) {
1005 delete mAudioEncoders[i];
1006 }
1007 mAudioEncoders.clear();
1008
1009 for (size_t i = 0; i < mVideoEncoders.size(); ++i) {
1010 delete mVideoEncoders[i];
1011 }
1012 mVideoEncoders.clear();
1013
1014 for (size_t i = 0; i < mVideoDecoders.size(); ++i) {
1015 delete mVideoDecoders[i];
1016 }
1017 mVideoDecoders.clear();
1018
1019 for (size_t i = 0; i < mAudioDecoders.size(); ++i) {
1020 delete mAudioDecoders[i];
1021 }
1022 mAudioDecoders.clear();
1023
1024 for (size_t i = 0; i < mCamcorderProfiles.size(); ++i) {
1025 delete mCamcorderProfiles[i];
1026 }
1027 mCamcorderProfiles.clear();
1028#endif
1029}
1030} // namespace android