|
1 /* |
|
2 * Copyright (C) 2012 Mozilla Foundation |
|
3 * |
|
4 * Licensed under the Apache License, Version 2.0 (the "License"); |
|
5 * you may not use this file except in compliance with the License. |
|
6 * You may obtain a copy of the License at |
|
7 * |
|
8 * http://www.apache.org/licenses/LICENSE-2.0 |
|
9 * |
|
10 * Unless required by applicable law or agreed to in writing, software |
|
11 * distributed under the License is distributed on an "AS IS" BASIS, |
|
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
13 * See the License for the specific language governing permissions and |
|
14 * limitations under the License. |
|
15 */ |
|
16 |
|
17 /** |
|
18 * DO NOT PUT RE-INCLUSION GUARD MACROS AROUND THIS HEADER!!! |
|
19 */ |
|
20 |
|
21 DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_LOW, "low") |
|
22 DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_HIGH, "high") |
|
23 DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_QCIF, "qcif") |
|
24 DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_CIF, "cif") |
|
25 DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_480P, "480p") |
|
26 DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_720P, "720p") |
|
27 DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_1080P, "1080p") |
|
28 /** |
|
29 * This profile is disabled because the CAMCORDER_QUALITY_QVGA value |
|
30 * conflicts across AOSP and vendor-specific versions of MediaProfiles.h. |
|
31 * |
|
32 * See bug 804359. |
|
33 */ |
|
34 // DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_QVGA, "qvga") |
|
35 /** |
|
36 * The following profiles do not appear in the AOSP version of |
|
37 * MediaProfiles.h and are disabled. |
|
38 * |
|
39 * See bug 804359. |
|
40 */ |
|
41 // DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_FWVGA, "fwvga") |
|
42 // DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_WVGA, "wvga") |
|
43 // DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_VGA, "vga") |
|
44 // DEF_GONK_RECORDER_PROFILE(CAMCORDER_QUALITY_WQVGA, "wqvga") |
|
45 #undef DEF_GONK_RECORDER_PROFILE |