merothh | f25a4a7 | 2022-01-02 21:45:42 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright 2013 The Android Open Source Project |
| 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 | <!DOCTYPE MediaSettings [ |
| 17 | <!ELEMENT MediaSettings (CamcorderProfiles, |
| 18 | EncoderOutputFileFormat+, |
| 19 | VideoEncoderCap+, |
| 20 | AudioEncoderCap+, |
| 21 | VideoDecoderCap, |
| 22 | AudioDecoderCap)> |
| 23 | <!ELEMENT CamcorderProfiles (EncoderProfile+, ImageEncoding+, ImageDecoding, Camera)> |
| 24 | <!ELEMENT EncoderProfile (Video, Audio)> |
| 25 | <!ATTLIST EncoderProfile quality (high|low) #REQUIRED> |
| 26 | <!ATTLIST EncoderProfile fileFormat (mp4|3gp) #REQUIRED> |
| 27 | <!ATTLIST EncoderProfile duration (30|60) #REQUIRED> |
| 28 | <!ATTLIST EncoderProfile cameraId (0|1|2|3|4|5) #REQUIRED> |
| 29 | <!ELEMENT Video EMPTY> |
| 30 | <!ATTLIST Video codec (h264|h263|m4v) #REQUIRED> |
| 31 | <!ATTLIST Video bitRate CDATA #REQUIRED> |
| 32 | <!ATTLIST Video width CDATA #REQUIRED> |
| 33 | <!ATTLIST Video height CDATA #REQUIRED> |
| 34 | <!ATTLIST Video frameRate CDATA #REQUIRED> |
| 35 | <!ELEMENT Audio EMPTY> |
| 36 | <!ATTLIST Audio codec (amrnb|amrwb|aac) #REQUIRED> |
| 37 | <!ATTLIST Audio bitRate CDATA #REQUIRED> |
| 38 | <!ATTLIST Audio sampleRate CDATA #REQUIRED> |
| 39 | <!ATTLIST Audio channels (1|2) #REQUIRED> |
| 40 | <!ELEMENT ImageEncoding EMPTY> |
| 41 | <!ATTLIST ImageEncoding quality (90|80|70|60|50|40) #REQUIRED> |
| 42 | <!ELEMENT ImageDecoding EMPTY> |
| 43 | <!ATTLIST ImageDecoding memCap CDATA #REQUIRED> |
| 44 | <!ELEMENT Camera EMPTY> |
| 45 | <!ELEMENT EncoderOutputFileFormat EMPTY> |
| 46 | <!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED> |
| 47 | <!ELEMENT VideoEncoderCap EMPTY> |
| 48 | <!ATTLIST VideoEncoderCap name (h264|h263|m4v|wmv) #REQUIRED> |
| 49 | <!ATTLIST VideoEncoderCap enabled (true|false) #REQUIRED> |
| 50 | <!ATTLIST VideoEncoderCap minBitRate CDATA #REQUIRED> |
| 51 | <!ATTLIST VideoEncoderCap maxBitRate CDATA #REQUIRED> |
| 52 | <!ATTLIST VideoEncoderCap minFrameWidth CDATA #REQUIRED> |
| 53 | <!ATTLIST VideoEncoderCap maxFrameWidth CDATA #REQUIRED> |
| 54 | <!ATTLIST VideoEncoderCap minFrameHeight CDATA #REQUIRED> |
| 55 | <!ATTLIST VideoEncoderCap maxFrameHeight CDATA #REQUIRED> |
| 56 | <!ATTLIST VideoEncoderCap minFrameRate CDATA #REQUIRED> |
| 57 | <!ATTLIST VideoEncoderCap maxFrameRate CDATA #REQUIRED> |
| 58 | <!ELEMENT AudioEncoderCap EMPTY> |
| 59 | <!ATTLIST AudioEncoderCap name (amrnb|amrwb|aac|wma) #REQUIRED> |
| 60 | <!ATTLIST AudioEncoderCap enabled (true|false) #REQUIRED> |
| 61 | <!ATTLIST AudioEncoderCap minBitRate CDATA #REQUIRED> |
| 62 | <!ATTLIST AudioEncoderCap maxBitRate CDATA #REQUIRED> |
| 63 | <!ATTLIST AudioEncoderCap minSampleRate CDATA #REQUIRED> |
| 64 | <!ATTLIST AudioEncoderCap maxSampleRate CDATA #REQUIRED> |
| 65 | <!ATTLIST AudioEncoderCap minChannels (1|2) #REQUIRED> |
| 66 | <!ATTLIST AudioEncoderCap maxChannels (1|2) #REQUIRED> |
| 67 | <!ELEMENT VideoDecoderCap EMPTY> |
| 68 | <!ATTLIST VideoDecoderCap name (wmv) #REQUIRED> |
| 69 | <!ATTLIST VideoDecoderCap enabled (true|false) #REQUIRED> |
| 70 | <!ELEMENT AudioDecoderCap EMPTY> |
| 71 | <!ATTLIST AudioDecoderCap name (wma) #REQUIRED> |
| 72 | <!ATTLIST AudioDecoderCap enabled (true|false) #REQUIRED> |
| 73 | ]> |
| 74 | <!-- |
| 75 | This file is used to declare the multimedia profiles and capabilities |
| 76 | on an android-powered device. |
| 77 | --> |
| 78 | <MediaSettings> |
| 79 | <!-- Each camcorder profile defines a set of predefined configuration parameters --> |
| 80 | <CamcorderProfiles cameraId="0"> |
| 81 | |
| 82 | <EncoderProfile quality="qvga" fileFormat="3gp" duration="60"> |
| 83 | <Video codec="h264" |
| 84 | bitRate="128000" |
| 85 | width="320" |
| 86 | height="240" |
| 87 | frameRate="30" /> |
| 88 | <Audio codec="amrnb" |
| 89 | bitRate="12200" |
| 90 | sampleRate="8000" |
| 91 | channels="1" /> |
| 92 | </EncoderProfile> |
| 93 | |
| 94 | <EncoderProfile quality="cif" fileFormat="mp4" duration="30"> |
| 95 | <Video codec="h264" |
| 96 | bitRate="1200000" |
| 97 | width="352" |
| 98 | height="288" |
| 99 | frameRate="30" /> |
| 100 | <Audio codec="aac" |
| 101 | bitRate="96000" |
| 102 | sampleRate="48000" |
| 103 | channels="1" /> |
| 104 | </EncoderProfile> |
| 105 | |
| 106 | <EncoderProfile quality="480p" fileFormat="mp4" duration="30"> |
| 107 | <Video codec="h264" |
| 108 | bitRate="6000000" |
| 109 | width="720" |
| 110 | height="480" |
| 111 | frameRate="30" /> |
| 112 | <Audio codec="aac" |
| 113 | bitRate="96000" |
| 114 | sampleRate="48000" |
| 115 | channels="1" /> |
| 116 | </EncoderProfile> |
| 117 | |
| 118 | <EncoderProfile quality="720p" fileFormat="mp4" duration="30"> |
| 119 | <Video codec="h264" |
| 120 | bitRate="12000000" |
| 121 | width="1280" |
| 122 | height="720" |
| 123 | frameRate="30" /> |
| 124 | <Audio codec="aac" |
| 125 | bitRate="96000" |
| 126 | sampleRate="48000" |
| 127 | channels="1" /> |
| 128 | </EncoderProfile> |
| 129 | |
| 130 | <EncoderProfile quality="1080p" fileFormat="mp4" duration="30"> |
| 131 | <Video codec="h264" |
| 132 | bitRate="17000000" |
| 133 | width="1920" |
| 134 | height="1080" |
| 135 | frameRate="30" /> |
| 136 | <Audio codec="aac" |
| 137 | bitRate="96000" |
| 138 | sampleRate="48000" |
| 139 | channels="1" /> |
| 140 | </EncoderProfile> |
| 141 | |
| 142 | <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30"> |
| 143 | <Video codec="h264" |
| 144 | bitRate="192000" |
| 145 | width="176" |
| 146 | height="144" |
| 147 | frameRate="30" /> |
| 148 | <!-- audio setting is ignored --> |
| 149 | <Audio codec="amrnb" |
| 150 | bitRate="12200" |
| 151 | sampleRate="8000" |
| 152 | channels="1" /> |
| 153 | </EncoderProfile> |
| 154 | |
| 155 | <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="30"> |
| 156 | <Video codec="h264" |
| 157 | bitRate="1200000" |
| 158 | width="352" |
| 159 | height="288" |
| 160 | frameRate="30" /> |
| 161 | <!-- audio setting is ignored --> |
| 162 | <Audio codec="aac" |
| 163 | bitRate="96000" |
| 164 | sampleRate="48000" |
| 165 | channels="1" /> |
| 166 | </EncoderProfile> |
| 167 | |
| 168 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="30"> |
| 169 | <Video codec="h264" |
| 170 | bitRate="6000000" |
| 171 | width="720" |
| 172 | height="480" |
| 173 | frameRate="30" /> |
| 174 | <!-- audio setting is ignored --> |
| 175 | <Audio codec="aac" |
| 176 | bitRate="96000" |
| 177 | sampleRate="48000" |
| 178 | channels="1" /> |
| 179 | </EncoderProfile> |
| 180 | |
| 181 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="30"> |
| 182 | <Video codec="h264" |
| 183 | bitRate="12000000" |
| 184 | width="1280" |
| 185 | height="720" |
| 186 | frameRate="30" /> |
| 187 | <!-- audio setting is ignored --> |
| 188 | <Audio codec="aac" |
| 189 | bitRate="96000" |
| 190 | sampleRate="48000" |
| 191 | channels="1" /> |
| 192 | </EncoderProfile> |
| 193 | |
| 194 | <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="30"> |
| 195 | <Video codec="h264" |
| 196 | bitRate="17000000" |
| 197 | width="1920" |
| 198 | height="1080" |
| 199 | frameRate="30" /> |
| 200 | <!-- audio setting is ignored --> |
| 201 | <Audio codec="aac" |
| 202 | bitRate="96000" |
| 203 | sampleRate="48000" |
| 204 | channels="1" /> |
| 205 | </EncoderProfile> |
| 206 | |
| 207 | <ImageEncoding quality="95" /> |
| 208 | <ImageEncoding quality="80" /> |
| 209 | <ImageEncoding quality="70" /> |
| 210 | <ImageDecoding memCap="20000000" /> |
| 211 | |
| 212 | </CamcorderProfiles> |
| 213 | |
| 214 | <CamcorderProfiles cameraId="1"> |
| 215 | |
| 216 | <EncoderProfile quality="qvga" fileFormat="3gp" duration="60"> |
| 217 | <Video codec="h264" |
| 218 | bitRate="128000" |
| 219 | width="320" |
| 220 | height="240" |
| 221 | frameRate="30" /> |
| 222 | <Audio codec="amrnb" |
| 223 | bitRate="12200" |
| 224 | sampleRate="8000" |
| 225 | channels="1" /> |
| 226 | </EncoderProfile> |
| 227 | |
| 228 | <EncoderProfile quality="cif" fileFormat="mp4" duration="30"> |
| 229 | <Video codec="h264" |
| 230 | bitRate="1200000" |
| 231 | width="352" |
| 232 | height="288" |
| 233 | frameRate="30" /> |
| 234 | <Audio codec="aac" |
| 235 | bitRate="96000" |
| 236 | sampleRate="48000" |
| 237 | channels="1" /> |
| 238 | </EncoderProfile> |
| 239 | |
| 240 | <EncoderProfile quality="480p" fileFormat="mp4" duration="30"> |
| 241 | <Video codec="h264" |
| 242 | bitRate="6000000" |
| 243 | width="720" |
| 244 | height="480" |
| 245 | frameRate="30" /> |
| 246 | <Audio codec="aac" |
| 247 | bitRate="96000" |
| 248 | sampleRate="48000" |
| 249 | channels="1" /> |
| 250 | </EncoderProfile> |
| 251 | |
| 252 | <EncoderProfile quality="720p" fileFormat="mp4" duration="30"> |
| 253 | <Video codec="h264" |
| 254 | bitRate="12000000" |
| 255 | width="1280" |
| 256 | height="720" |
| 257 | frameRate="30" /> |
| 258 | <Audio codec="aac" |
| 259 | bitRate="96000" |
| 260 | sampleRate="48000" |
| 261 | channels="1" /> |
| 262 | </EncoderProfile> |
| 263 | |
| 264 | <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30"> |
| 265 | <Video codec="h264" |
| 266 | bitRate="192000" |
| 267 | width="176" |
| 268 | height="144" |
| 269 | frameRate="30" /> |
| 270 | <!-- audio setting is ignored --> |
| 271 | <Audio codec="amrnb" |
| 272 | bitRate="12200" |
| 273 | sampleRate="8000" |
| 274 | channels="1" /> |
| 275 | </EncoderProfile> |
| 276 | |
| 277 | <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="30"> |
| 278 | <Video codec="h264" |
| 279 | bitRate="1200000" |
| 280 | width="352" |
| 281 | height="288" |
| 282 | frameRate="30" /> |
| 283 | <!-- audio setting is ignored --> |
| 284 | <Audio codec="aac" |
| 285 | bitRate="96000" |
| 286 | sampleRate="48000" |
| 287 | channels="1" /> |
| 288 | </EncoderProfile> |
| 289 | |
| 290 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="30"> |
| 291 | <Video codec="h264" |
| 292 | bitRate="6000000" |
| 293 | width="720" |
| 294 | height="480" |
| 295 | frameRate="30" /> |
| 296 | <!-- audio setting is ignored --> |
| 297 | <Audio codec="aac" |
| 298 | bitRate="96000" |
| 299 | sampleRate="48000" |
| 300 | channels="1" /> |
| 301 | </EncoderProfile> |
| 302 | |
| 303 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="30"> |
| 304 | <Video codec="h264" |
| 305 | bitRate="12000000" |
| 306 | width="1280" |
| 307 | height="720" |
| 308 | frameRate="30" /> |
| 309 | <!-- audio setting is ignored --> |
| 310 | <Audio codec="aac" |
| 311 | bitRate="96000" |
| 312 | sampleRate="48000" |
| 313 | channels="1" /> |
| 314 | </EncoderProfile> |
| 315 | |
| 316 | <ImageEncoding quality="95" /> |
| 317 | <ImageEncoding quality="80" /> |
| 318 | <ImageEncoding quality="70" /> |
| 319 | <ImageDecoding memCap="20000000" /> |
| 320 | |
| 321 | </CamcorderProfiles> |
| 322 | <CamcorderProfiles cameraId="2"> |
| 323 | |
| 324 | <EncoderProfile quality="qvga" fileFormat="3gp" duration="60"> |
| 325 | <Video codec="h264" |
| 326 | bitRate="128000" |
| 327 | width="320" |
| 328 | height="240" |
| 329 | frameRate="30" /> |
| 330 | <Audio codec="amrnb" |
| 331 | bitRate="12200" |
| 332 | sampleRate="8000" |
| 333 | channels="1" /> |
| 334 | </EncoderProfile> |
| 335 | |
| 336 | <EncoderProfile quality="cif" fileFormat="mp4" duration="30"> |
| 337 | <Video codec="h264" |
| 338 | bitRate="1200000" |
| 339 | width="352" |
| 340 | height="288" |
| 341 | frameRate="30" /> |
| 342 | <Audio codec="aac" |
| 343 | bitRate="96000" |
| 344 | sampleRate="48000" |
| 345 | channels="1" /> |
| 346 | </EncoderProfile> |
| 347 | |
| 348 | <EncoderProfile quality="480p" fileFormat="mp4" duration="30"> |
| 349 | <Video codec="h264" |
| 350 | bitRate="6000000" |
| 351 | width="720" |
| 352 | height="480" |
| 353 | frameRate="30" /> |
| 354 | <Audio codec="aac" |
| 355 | bitRate="96000" |
| 356 | sampleRate="48000" |
| 357 | channels="1" /> |
| 358 | </EncoderProfile> |
| 359 | |
| 360 | <EncoderProfile quality="720p" fileFormat="mp4" duration="30"> |
| 361 | <Video codec="h264" |
| 362 | bitRate="12000000" |
| 363 | width="1280" |
| 364 | height="720" |
| 365 | frameRate="30" /> |
| 366 | <Audio codec="aac" |
| 367 | bitRate="96000" |
| 368 | sampleRate="48000" |
| 369 | channels="1" /> |
| 370 | </EncoderProfile> |
| 371 | |
| 372 | <EncoderProfile quality="1080p" fileFormat="mp4" duration="30"> |
| 373 | <Video codec="h264" |
| 374 | bitRate="17000000" |
| 375 | width="1920" |
| 376 | height="1080" |
| 377 | frameRate="30" /> |
| 378 | <Audio codec="aac" |
| 379 | bitRate="96000" |
| 380 | sampleRate="48000" |
| 381 | channels="1" /> |
| 382 | </EncoderProfile> |
| 383 | |
| 384 | <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30"> |
| 385 | <Video codec="h264" |
| 386 | bitRate="192000" |
| 387 | width="176" |
| 388 | height="144" |
| 389 | frameRate="30" /> |
| 390 | <!-- audio setting is ignored --> |
| 391 | <Audio codec="amrnb" |
| 392 | bitRate="12200" |
| 393 | sampleRate="8000" |
| 394 | channels="1" /> |
| 395 | </EncoderProfile> |
| 396 | |
| 397 | <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="30"> |
| 398 | <Video codec="h264" |
| 399 | bitRate="1200000" |
| 400 | width="352" |
| 401 | height="288" |
| 402 | frameRate="30" /> |
| 403 | <!-- audio setting is ignored --> |
| 404 | <Audio codec="aac" |
| 405 | bitRate="96000" |
| 406 | sampleRate="48000" |
| 407 | channels="1" /> |
| 408 | </EncoderProfile> |
| 409 | |
| 410 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="30"> |
| 411 | <Video codec="h264" |
| 412 | bitRate="6000000" |
| 413 | width="720" |
| 414 | height="480" |
| 415 | frameRate="30" /> |
| 416 | <!-- audio setting is ignored --> |
| 417 | <Audio codec="aac" |
| 418 | bitRate="96000" |
| 419 | sampleRate="48000" |
| 420 | channels="1" /> |
| 421 | </EncoderProfile> |
| 422 | |
| 423 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="30"> |
| 424 | <Video codec="h264" |
| 425 | bitRate="12000000" |
| 426 | width="1280" |
| 427 | height="720" |
| 428 | frameRate="30" /> |
| 429 | <!-- audio setting is ignored --> |
| 430 | <Audio codec="aac" |
| 431 | bitRate="96000" |
| 432 | sampleRate="48000" |
| 433 | channels="1" /> |
| 434 | </EncoderProfile> |
| 435 | |
| 436 | <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="30"> |
| 437 | <Video codec="h264" |
| 438 | bitRate="17000000" |
| 439 | width="1920" |
| 440 | height="1080" |
| 441 | frameRate="30" /> |
| 442 | <!-- audio setting is ignored --> |
| 443 | <Audio codec="aac" |
| 444 | bitRate="96000" |
| 445 | sampleRate="48000" |
| 446 | channels="1" /> |
| 447 | </EncoderProfile> |
| 448 | |
| 449 | <ImageEncoding quality="95" /> |
| 450 | <ImageEncoding quality="80" /> |
| 451 | <ImageEncoding quality="70" /> |
| 452 | <ImageDecoding memCap="20000000" /> |
| 453 | |
| 454 | </CamcorderProfiles> |
| 455 | |
| 456 | <CamcorderProfiles cameraId="3"> |
| 457 | |
| 458 | <EncoderProfile quality="qvga" fileFormat="3gp" duration="60"> |
| 459 | <Video codec="h264" |
| 460 | bitRate="128000" |
| 461 | width="320" |
| 462 | height="240" |
| 463 | frameRate="30" /> |
| 464 | <Audio codec="amrnb" |
| 465 | bitRate="12200" |
| 466 | sampleRate="8000" |
| 467 | channels="1" /> |
| 468 | </EncoderProfile> |
| 469 | |
| 470 | <EncoderProfile quality="cif" fileFormat="mp4" duration="30"> |
| 471 | <Video codec="h264" |
| 472 | bitRate="1200000" |
| 473 | width="352" |
| 474 | height="288" |
| 475 | frameRate="30" /> |
| 476 | <Audio codec="aac" |
| 477 | bitRate="96000" |
| 478 | sampleRate="48000" |
| 479 | channels="1" /> |
| 480 | </EncoderProfile> |
| 481 | |
| 482 | <EncoderProfile quality="480p" fileFormat="mp4" duration="30"> |
| 483 | <Video codec="h264" |
| 484 | bitRate="6000000" |
| 485 | width="720" |
| 486 | height="480" |
| 487 | frameRate="30" /> |
| 488 | <Audio codec="aac" |
| 489 | bitRate="96000" |
| 490 | sampleRate="48000" |
| 491 | channels="1" /> |
| 492 | </EncoderProfile> |
| 493 | |
| 494 | <EncoderProfile quality="720p" fileFormat="mp4" duration="30"> |
| 495 | <Video codec="h264" |
| 496 | bitRate="12000000" |
| 497 | width="1280" |
| 498 | height="720" |
| 499 | frameRate="30" /> |
| 500 | <Audio codec="aac" |
| 501 | bitRate="96000" |
| 502 | sampleRate="48000" |
| 503 | channels="1" /> |
| 504 | </EncoderProfile> |
| 505 | |
| 506 | <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30"> |
| 507 | <Video codec="h264" |
| 508 | bitRate="192000" |
| 509 | width="176" |
| 510 | height="144" |
| 511 | frameRate="30" /> |
| 512 | <!-- audio setting is ignored --> |
| 513 | <Audio codec="amrnb" |
| 514 | bitRate="12200" |
| 515 | sampleRate="8000" |
| 516 | channels="1" /> |
| 517 | </EncoderProfile> |
| 518 | |
| 519 | <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="30"> |
| 520 | <Video codec="h264" |
| 521 | bitRate="1200000" |
| 522 | width="352" |
| 523 | height="288" |
| 524 | frameRate="30" /> |
| 525 | <!-- audio setting is ignored --> |
| 526 | <Audio codec="aac" |
| 527 | bitRate="96000" |
| 528 | sampleRate="48000" |
| 529 | channels="1" /> |
| 530 | </EncoderProfile> |
| 531 | |
| 532 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="30"> |
| 533 | <Video codec="h264" |
| 534 | bitRate="6000000" |
| 535 | width="720" |
| 536 | height="480" |
| 537 | frameRate="30" /> |
| 538 | <!-- audio setting is ignored --> |
| 539 | <Audio codec="aac" |
| 540 | bitRate="96000" |
| 541 | sampleRate="48000" |
| 542 | channels="1" /> |
| 543 | </EncoderProfile> |
| 544 | |
| 545 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="30"> |
| 546 | <Video codec="h264" |
| 547 | bitRate="12000000" |
| 548 | width="1280" |
| 549 | height="720" |
| 550 | frameRate="30" /> |
| 551 | <!-- audio setting is ignored --> |
| 552 | <Audio codec="aac" |
| 553 | bitRate="96000" |
| 554 | sampleRate="48000" |
| 555 | channels="1" /> |
| 556 | </EncoderProfile> |
| 557 | |
| 558 | <ImageEncoding quality="95" /> |
| 559 | <ImageEncoding quality="80" /> |
| 560 | <ImageEncoding quality="70" /> |
| 561 | <ImageDecoding memCap="20000000" /> |
| 562 | |
| 563 | </CamcorderProfiles> |
| 564 | <CamcorderProfiles cameraId="4"> |
| 565 | |
| 566 | <EncoderProfile quality="qvga" fileFormat="3gp" duration="60"> |
| 567 | <Video codec="h264" |
| 568 | bitRate="128000" |
| 569 | width="320" |
| 570 | height="240" |
| 571 | frameRate="30" /> |
| 572 | <Audio codec="amrnb" |
| 573 | bitRate="12200" |
| 574 | sampleRate="8000" |
| 575 | channels="1" /> |
| 576 | </EncoderProfile> |
| 577 | |
| 578 | <EncoderProfile quality="cif" fileFormat="mp4" duration="30"> |
| 579 | <Video codec="h264" |
| 580 | bitRate="1200000" |
| 581 | width="352" |
| 582 | height="288" |
| 583 | frameRate="30" /> |
| 584 | <Audio codec="aac" |
| 585 | bitRate="96000" |
| 586 | sampleRate="48000" |
| 587 | channels="1" /> |
| 588 | </EncoderProfile> |
| 589 | |
| 590 | <EncoderProfile quality="480p" fileFormat="mp4" duration="30"> |
| 591 | <Video codec="h264" |
| 592 | bitRate="6000000" |
| 593 | width="720" |
| 594 | height="480" |
| 595 | frameRate="30" /> |
| 596 | <Audio codec="aac" |
| 597 | bitRate="96000" |
| 598 | sampleRate="48000" |
| 599 | channels="1" /> |
| 600 | </EncoderProfile> |
| 601 | |
| 602 | <EncoderProfile quality="720p" fileFormat="mp4" duration="30"> |
| 603 | <Video codec="h264" |
| 604 | bitRate="12000000" |
| 605 | width="1280" |
| 606 | height="720" |
| 607 | frameRate="30" /> |
| 608 | <Audio codec="aac" |
| 609 | bitRate="96000" |
| 610 | sampleRate="48000" |
| 611 | channels="1" /> |
| 612 | </EncoderProfile> |
| 613 | |
| 614 | <EncoderProfile quality="1080p" fileFormat="mp4" duration="30"> |
| 615 | <Video codec="h264" |
| 616 | bitRate="17000000" |
| 617 | width="1920" |
| 618 | height="1080" |
| 619 | frameRate="30" /> |
| 620 | <Audio codec="aac" |
| 621 | bitRate="96000" |
| 622 | sampleRate="48000" |
| 623 | channels="1" /> |
| 624 | </EncoderProfile> |
| 625 | |
| 626 | <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30"> |
| 627 | <Video codec="h264" |
| 628 | bitRate="192000" |
| 629 | width="176" |
| 630 | height="144" |
| 631 | frameRate="30" /> |
| 632 | <!-- audio setting is ignored --> |
| 633 | <Audio codec="amrnb" |
| 634 | bitRate="12200" |
| 635 | sampleRate="8000" |
| 636 | channels="1" /> |
| 637 | </EncoderProfile> |
| 638 | |
| 639 | <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="30"> |
| 640 | <Video codec="h264" |
| 641 | bitRate="1200000" |
| 642 | width="352" |
| 643 | height="288" |
| 644 | frameRate="30" /> |
| 645 | <!-- audio setting is ignored --> |
| 646 | <Audio codec="aac" |
| 647 | bitRate="96000" |
| 648 | sampleRate="48000" |
| 649 | channels="1" /> |
| 650 | </EncoderProfile> |
| 651 | |
| 652 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="30"> |
| 653 | <Video codec="h264" |
| 654 | bitRate="6000000" |
| 655 | width="720" |
| 656 | height="480" |
| 657 | frameRate="30" /> |
| 658 | <!-- audio setting is ignored --> |
| 659 | <Audio codec="aac" |
| 660 | bitRate="96000" |
| 661 | sampleRate="48000" |
| 662 | channels="1" /> |
| 663 | </EncoderProfile> |
| 664 | |
| 665 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="30"> |
| 666 | <Video codec="h264" |
| 667 | bitRate="12000000" |
| 668 | width="1280" |
| 669 | height="720" |
| 670 | frameRate="30" /> |
| 671 | <!-- audio setting is ignored --> |
| 672 | <Audio codec="aac" |
| 673 | bitRate="96000" |
| 674 | sampleRate="48000" |
| 675 | channels="1" /> |
| 676 | </EncoderProfile> |
| 677 | |
| 678 | <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="30"> |
| 679 | <Video codec="h264" |
| 680 | bitRate="17000000" |
| 681 | width="1920" |
| 682 | height="1080" |
| 683 | frameRate="30" /> |
| 684 | <!-- audio setting is ignored --> |
| 685 | <Audio codec="aac" |
| 686 | bitRate="96000" |
| 687 | sampleRate="48000" |
| 688 | channels="1" /> |
| 689 | </EncoderProfile> |
| 690 | |
| 691 | <ImageEncoding quality="95" /> |
| 692 | <ImageEncoding quality="80" /> |
| 693 | <ImageEncoding quality="70" /> |
| 694 | <ImageDecoding memCap="20000000" /> |
| 695 | |
| 696 | </CamcorderProfiles> |
| 697 | |
| 698 | <CamcorderProfiles cameraId="5"> |
| 699 | |
| 700 | <EncoderProfile quality="qvga" fileFormat="3gp" duration="60"> |
| 701 | <Video codec="h264" |
| 702 | bitRate="128000" |
| 703 | width="320" |
| 704 | height="240" |
| 705 | frameRate="30" /> |
| 706 | <Audio codec="amrnb" |
| 707 | bitRate="12200" |
| 708 | sampleRate="8000" |
| 709 | channels="1" /> |
| 710 | </EncoderProfile> |
| 711 | |
| 712 | <EncoderProfile quality="cif" fileFormat="mp4" duration="30"> |
| 713 | <Video codec="h264" |
| 714 | bitRate="1200000" |
| 715 | width="352" |
| 716 | height="288" |
| 717 | frameRate="30" /> |
| 718 | <Audio codec="aac" |
| 719 | bitRate="96000" |
| 720 | sampleRate="48000" |
| 721 | channels="1" /> |
| 722 | </EncoderProfile> |
| 723 | |
| 724 | <EncoderProfile quality="480p" fileFormat="mp4" duration="30"> |
| 725 | <Video codec="h264" |
| 726 | bitRate="6000000" |
| 727 | width="720" |
| 728 | height="480" |
| 729 | frameRate="30" /> |
| 730 | <Audio codec="aac" |
| 731 | bitRate="96000" |
| 732 | sampleRate="48000" |
| 733 | channels="1" /> |
| 734 | </EncoderProfile> |
| 735 | |
| 736 | <EncoderProfile quality="720p" fileFormat="mp4" duration="30"> |
| 737 | <Video codec="h264" |
| 738 | bitRate="12000000" |
| 739 | width="1280" |
| 740 | height="720" |
| 741 | frameRate="30" /> |
| 742 | <Audio codec="aac" |
| 743 | bitRate="96000" |
| 744 | sampleRate="48000" |
| 745 | channels="1" /> |
| 746 | </EncoderProfile> |
| 747 | |
| 748 | <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30"> |
| 749 | <Video codec="h264" |
| 750 | bitRate="192000" |
| 751 | width="176" |
| 752 | height="144" |
| 753 | frameRate="30" /> |
| 754 | <!-- audio setting is ignored --> |
| 755 | <Audio codec="amrnb" |
| 756 | bitRate="12200" |
| 757 | sampleRate="8000" |
| 758 | channels="1" /> |
| 759 | </EncoderProfile> |
| 760 | |
| 761 | <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="30"> |
| 762 | <Video codec="h264" |
| 763 | bitRate="1200000" |
| 764 | width="352" |
| 765 | height="288" |
| 766 | frameRate="30" /> |
| 767 | <!-- audio setting is ignored --> |
| 768 | <Audio codec="aac" |
| 769 | bitRate="96000" |
| 770 | sampleRate="48000" |
| 771 | channels="1" /> |
| 772 | </EncoderProfile> |
| 773 | |
| 774 | <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="30"> |
| 775 | <Video codec="h264" |
| 776 | bitRate="6000000" |
| 777 | width="720" |
| 778 | height="480" |
| 779 | frameRate="30" /> |
| 780 | <!-- audio setting is ignored --> |
| 781 | <Audio codec="aac" |
| 782 | bitRate="96000" |
| 783 | sampleRate="48000" |
| 784 | channels="1" /> |
| 785 | </EncoderProfile> |
| 786 | |
| 787 | <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="30"> |
| 788 | <Video codec="h264" |
| 789 | bitRate="12000000" |
| 790 | width="1280" |
| 791 | height="720" |
| 792 | frameRate="30" /> |
| 793 | <!-- audio setting is ignored --> |
| 794 | <Audio codec="aac" |
| 795 | bitRate="96000" |
| 796 | sampleRate="48000" |
| 797 | channels="1" /> |
| 798 | </EncoderProfile> |
| 799 | |
| 800 | <ImageEncoding quality="95" /> |
| 801 | <ImageEncoding quality="80" /> |
| 802 | <ImageEncoding quality="70" /> |
| 803 | <ImageDecoding memCap="20000000" /> |
| 804 | |
| 805 | </CamcorderProfiles> |
| 806 | |
| 807 | <EncoderOutputFileFormat name="3gp" /> |
| 808 | <EncoderOutputFileFormat name="mp4" /> |
| 809 | |
| 810 | <!-- |
| 811 | If a codec is not enabled, it is invisible to the applications |
| 812 | In other words, the applications won't be able to use the codec |
| 813 | or query the capabilities of the codec at all if it is disabled |
| 814 | --> |
| 815 | <VideoEncoderCap name="h264" enabled="true" |
| 816 | minBitRate="64000" maxBitRate="40000000" |
| 817 | minFrameWidth="176" maxFrameWidth="1920" |
| 818 | minFrameHeight="144" maxFrameHeight="1080" |
| 819 | minFrameRate="15" maxFrameRate="30" /> |
| 820 | |
| 821 | <VideoEncoderCap name="h263" enabled="true" |
| 822 | minBitRate="64000" maxBitRate="2000000" |
| 823 | minFrameWidth="176" maxFrameWidth="800" |
| 824 | minFrameHeight="144" maxFrameHeight="480" |
| 825 | minFrameRate="15" maxFrameRate="30" /> |
| 826 | |
| 827 | <VideoEncoderCap name="m4v" enabled="true" |
| 828 | minBitRate="64000" maxBitRate="40000000" |
| 829 | minFrameWidth="176" maxFrameWidth="1920" |
| 830 | minFrameHeight="144" maxFrameHeight="1080" |
| 831 | minFrameRate="15" maxFrameRate="30" /> |
| 832 | |
| 833 | <AudioEncoderCap name="aac" enabled="true" |
| 834 | minBitRate="758" maxBitRate="288000" |
| 835 | minSampleRate="8000" maxSampleRate="48000" |
| 836 | minChannels="1" maxChannels="2" /> |
| 837 | |
| 838 | <AudioEncoderCap name="heaac" enabled="true" |
| 839 | minBitRate="8000" maxBitRate="64000" |
| 840 | minSampleRate="16000" maxSampleRate="48000" |
| 841 | minChannels="1" maxChannels="2" /> |
| 842 | |
| 843 | <AudioEncoderCap name="aaceld" enabled="true" |
| 844 | minBitRate="16000" maxBitRate="192000" |
| 845 | minSampleRate="16000" maxSampleRate="48000" |
| 846 | minChannels="1" maxChannels="2" /> |
| 847 | |
| 848 | <AudioEncoderCap name="amrwb" enabled="true" |
| 849 | minBitRate="6600" maxBitRate="23050" |
| 850 | minSampleRate="16000" maxSampleRate="16000" |
| 851 | minChannels="1" maxChannels="1" /> |
| 852 | |
| 853 | <AudioEncoderCap name="amrnb" enabled="true" |
| 854 | minBitRate="5525" maxBitRate="12200" |
| 855 | minSampleRate="8000" maxSampleRate="8000" |
| 856 | minChannels="1" maxChannels="1" /> |
| 857 | |
| 858 | <!-- |
| 859 | FIXME: |
| 860 | We do not check decoder capabilities at present |
| 861 | At present, we only check whether windows media is visible |
| 862 | for TEST applications. For other applications, we do |
| 863 | not perform any checks at all. |
| 864 | --> |
| 865 | <VideoDecoderCap name="wmv" enabled="false"/> |
| 866 | <AudioDecoderCap name="wma" enabled="false"/> |
| 867 | </MediaSettings> |