1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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<!ELEMENT Video EMPTY>
29<!ATTLIST Video codec (h264|h263|m4v) #REQUIRED>
30<!ATTLIST Video bitRate CDATA #REQUIRED>
31<!ATTLIST Video width CDATA #REQUIRED>
32<!ATTLIST Video height CDATA #REQUIRED>
33<!ATTLIST Video frameRate CDATA #REQUIRED>
34<!ELEMENT Audio EMPTY>
35<!ATTLIST Audio codec (amrnb|amrwb|aac) #REQUIRED>
36<!ATTLIST Audio bitRate CDATA #REQUIRED>
37<!ATTLIST Audio sampleRate CDATA #REQUIRED>
38<!ATTLIST Audio channels (1|2) #REQUIRED>
39<!ELEMENT ImageEncoding EMPTY>
40<!ATTLIST ImageEncoding quality (90|80|70|60|50|40) #REQUIRED>
41<!ELEMENT ImageDecoding EMPTY>
42<!ATTLIST ImageDecoding memCap CDATA #REQUIRED>
43<!ELEMENT Camera EMPTY>
44<!ATTLIST Camera previewFrameRate CDATA #REQUIRED>
45<!ELEMENT EncoderOutputFileFormat EMPTY>
46<!ATTLIST EncoderOutputFileFormat name (mp4|3gp) #REQUIRED>
47<!ELEMENT VideoEncoderCap EMPTY>
48<!ATTLIST VideoEncoderCap name (hevc|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="2160p" fileFormat="mp4" duration="60">
83            <Video codec="h264"
84                   bitRate="72000000"
85                   width="3840"
86                   height="2160"
87                   frameRate="60" />
88
89            <Audio codec="aac"
90                   bitRate="96000"
91                   sampleRate="48000"
92                   channels="1" />
93        </EncoderProfile>
94
95        <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
96            <Video codec="h264"
97                   bitRate="33000000"
98                   width="1920"
99                   height="1080"
100                   frameRate="60" />
101
102            <Audio codec="aac"
103                   bitRate="96000"
104                   sampleRate="48000"
105                   channels="1" />
106        </EncoderProfile>
107
108        <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
109            <Video codec="h264"
110                   bitRate="12000000"
111                   width="1280"
112                   height="720"
113                   frameRate="30" />
114
115            <Audio codec="aac"
116                   bitRate="96000"
117                   sampleRate="48000"
118                   channels="1" />
119        </EncoderProfile>
120
121        <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
122            <Video codec="h264"
123                   bitRate="6000000"
124                   width="720"
125                   height="480"
126                   frameRate="30" />
127
128            <Audio codec="aac"
129                   bitRate="96000"
130                   sampleRate="48000"
131                   channels="1" />
132        </EncoderProfile>
133
134        <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
135            <Video codec="h264"
136                   bitRate="1200000"
137                   width="352"
138                   height="288"
139                   frameRate="30" />
140
141            <Audio codec="aac"
142                   bitRate="96000"
143                   sampleRate="48000"
144                   channels="1" />
145        </EncoderProfile>
146
147        <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
148            <Video codec="h264"
149                   bitRate="512000"
150                   width="320"
151                   height="240"
152                   frameRate="30" />
153
154            <Audio codec="aac"
155                   bitRate="96000"
156                   sampleRate="48000"
157                   channels="1" />
158        </EncoderProfile>
159
160        <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
161            <Video codec="h264"
162                   bitRate="128000"
163                   width="176"
164                   height="144"
165                   frameRate="30" />
166
167            <Audio codec="amrnb"
168                   bitRate="12200"
169                   sampleRate="8000"
170                   channels="1" />
171        </EncoderProfile>
172
173        <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
174            <Video codec="h264"
175                   bitRate="48000000"
176                   width="3840"
177                   height="2160"
178                   frameRate="30" />
179
180            <!-- Audio settings are not used for timealpse video recording -->
181            <Audio codec="aac"
182                   bitRate="96000"
183                   sampleRate="48000"
184                   channels="1" />
185        </EncoderProfile>
186
187        <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
188            <Video codec="h264"
189                   bitRate="22000000"
190                   width="1920"
191                   height="1080"
192                   frameRate="30" />
193
194            <!-- Audio settings are not used for timealpse video recording -->
195            <Audio codec="aac"
196                   bitRate="96000"
197                   sampleRate="48000"
198                   channels="1" />
199        </EncoderProfile>
200
201        <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
202            <Video codec="h264"
203                   bitRate="12000000"
204                   width="1280"
205                   height="720"
206                   frameRate="30" />
207
208            <!-- Audio settings are not used for timealpse video recording -->
209            <Audio codec="aac"
210                   bitRate="96000"
211                   sampleRate="48000"
212                   channels="1" />
213        </EncoderProfile>
214
215        <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
216            <Video codec="h264"
217                   bitRate="6000000"
218                   width="720"
219                   height="480"
220                   frameRate="30" />
221
222            <!-- Audio settings are not used for timealpse video recording -->
223            <Audio codec="aac"
224                   bitRate="96000"
225                   sampleRate="48000"
226                   channels="1" />
227        </EncoderProfile>
228
229        <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
230            <Video codec="h264"
231                   bitRate="1200000"
232                   width="352"
233                   height="288"
234                   frameRate="30" />
235
236            <!-- Audio settings are not used for timealpse video recording -->
237            <Audio codec="aac"
238                   bitRate="96000"
239                   sampleRate="48000"
240                   channels="1" />
241        </EncoderProfile>
242
243        <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
244            <Video codec="h264"
245                   bitRate="192000"
246                   width="176"
247                   height="144"
248                   frameRate="30" />
249
250            <!-- Audio settings are not used for timealpse video recording -->
251            <Audio codec="amrnb"
252                   bitRate="12200"
253                   sampleRate="8000"
254                   channels="1" />
255        </EncoderProfile>
256
257        <EncoderProfile quality="highspeedlow" fileFormat="mp4" duration="60">
258            <Video codec="h264"
259                   bitRate="72000000"
260                   width="1920"
261                   height="1080"
262                   frameRate="240" />
263
264            <!-- audio setting is ignored -->
265            <Audio codec="aac"
266                   bitRate="96000"
267                   sampleRate="48000"
268                   channels="1" />
269        </EncoderProfile>
270
271        <EncoderProfile quality="highspeedhigh" fileFormat="mp4" duration="60">
272            <Video codec="h264"
273                   bitRate="72000000"
274                   width="1920"
275                   height="1080"
276                   frameRate="240" />
277
278            <!-- audio setting is ignored -->
279            <Audio codec="aac"
280                   bitRate="96000"
281                   sampleRate="48000"
282                   channels="1" />
283        </EncoderProfile>
284
285        <EncoderProfile quality="highspeed1080p" fileFormat="mp4" duration="60">
286            <Video codec="h264"
287                   bitRate="72000000"
288                   width="1920"
289                   height="1080"
290                   frameRate="240" />
291
292            <!-- audio setting is ignored -->
293            <Audio codec="aac"
294                   bitRate="96000"
295                   sampleRate="48000"
296                   channels="1" />
297        </EncoderProfile>
298
299        <ImageEncoding quality="90" />
300        <ImageEncoding quality="80" />
301        <ImageEncoding quality="70" />
302        <ImageDecoding memCap="20000000" />
303
304    </CamcorderProfiles>
305
306    <CamcorderProfiles cameraId="1">
307
308        <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
309            <Video codec="h264"
310                   bitRate="22000000"
311                   width="1920"
312                   height="1080"
313                   frameRate="30" />
314
315            <Audio codec="aac"
316                   bitRate="96000"
317                   sampleRate="48000"
318                   channels="1" />
319        </EncoderProfile>
320
321        <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
322            <Video codec="h264"
323                   bitRate="12000000"
324                   width="1280"
325                   height="720"
326                   frameRate="30" />
327
328            <Audio codec="aac"
329                   bitRate="96000"
330                   sampleRate="48000"
331                   channels="1" />
332        </EncoderProfile>
333
334        <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
335            <Video codec="h264"
336                   bitRate="6000000"
337                   width="720"
338                   height="480"
339                   frameRate="30" />
340
341            <Audio codec="aac"
342                   bitRate="96000"
343                   sampleRate="48000"
344                   channels="1" />
345        </EncoderProfile>
346
347        <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
348            <Video codec="h264"
349                   bitRate="1200000"
350                   width="352"
351                   height="288"
352                   frameRate="30" />
353
354            <Audio codec="aac"
355                   bitRate="96000"
356                   sampleRate="48000"
357                   channels="1" />
358        </EncoderProfile>
359
360        <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
361            <Video codec="h264"
362                   bitRate="512000"
363                   width="320"
364                   height="240"
365                   frameRate="30" />
366
367            <Audio codec="aac"
368                   bitRate="96000"
369                   sampleRate="48000"
370                   channels="1" />
371        </EncoderProfile>
372
373        <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
374            <Video codec="h264"
375                   bitRate="128000"
376                   width="176"
377                   height="144"
378                   frameRate="30" />
379
380            <Audio codec="amrnb"
381                   bitRate="12200"
382                   sampleRate="8000"
383                   channels="1" />
384        </EncoderProfile>
385
386        <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
387            <Video codec="h264"
388                   bitRate="22000000"
389                   width="1920"
390                   height="1080"
391                   frameRate="30" />
392
393            <!-- Audio settings are not used for timealpse video recording -->
394            <Audio codec="aac"
395                   bitRate="96000"
396                   sampleRate="48000"
397                   channels="1" />
398        </EncoderProfile>
399
400        <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
401            <Video codec="h264"
402                   bitRate="12000000"
403                   width="1280"
404                   height="720"
405                   frameRate="30" />
406
407            <!-- Audio settings are not used for timealpse video recording -->
408            <Audio codec="aac"
409                   bitRate="96000"
410                   sampleRate="48000"
411                   channels="1" />
412        </EncoderProfile>
413
414        <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
415            <Video codec="h264"
416                   bitRate="6000000"
417                   width="720"
418                   height="480"
419                   frameRate="30" />
420
421            <!-- Audio settings are not used for timealpse video recording -->
422            <Audio codec="aac"
423                   bitRate="96000"
424                   sampleRate="48000"
425                   channels="1" />
426        </EncoderProfile>
427
428        <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
429            <Video codec="h264"
430                   bitRate="1200000"
431                   width="352"
432                   height="288"
433                   frameRate="30" />
434
435            <!-- Audio settings are not used for timealpse video recording -->
436            <Audio codec="aac"
437                   bitRate="96000"
438                   sampleRate="48000"
439                   channels="1" />
440        </EncoderProfile>
441
442        <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
443            <Video codec="h264"
444                   bitRate="192000"
445                   width="176"
446                   height="144"
447                   frameRate="30" />
448
449            <!-- Audio settings are not used for timealpse video recording -->
450            <Audio codec="amrnb"
451                   bitRate="12200"
452                   sampleRate="8000"
453                   channels="1" />
454        </EncoderProfile>
455
456        <ImageEncoding quality="90" />
457        <ImageEncoding quality="80" />
458        <ImageEncoding quality="70" />
459        <ImageDecoding memCap="20000000" />
460
461    </CamcorderProfiles>
462
463    <CamcorderProfiles cameraId="2">
464
465        <EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
466            <Video codec="h264"
467                   bitRate="72000000"
468                   width="3840"
469                   height="2160"
470                   frameRate="60" />
471
472            <Audio codec="aac"
473                   bitRate="96000"
474                   sampleRate="48000"
475                   channels="1" />
476        </EncoderProfile>
477
478        <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
479            <Video codec="h264"
480                   bitRate="33000000"
481                   width="1920"
482                   height="1080"
483                   frameRate="60" />
484
485            <Audio codec="aac"
486                   bitRate="96000"
487                   sampleRate="48000"
488                   channels="1" />
489        </EncoderProfile>
490
491        <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
492            <Video codec="h264"
493                   bitRate="12000000"
494                   width="1280"
495                   height="720"
496                   frameRate="30" />
497
498            <Audio codec="aac"
499                   bitRate="96000"
500                   sampleRate="48000"
501                   channels="1" />
502        </EncoderProfile>
503
504        <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
505            <Video codec="h264"
506                   bitRate="6000000"
507                   width="720"
508                   height="480"
509                   frameRate="30" />
510
511            <Audio codec="aac"
512                   bitRate="96000"
513                   sampleRate="48000"
514                   channels="1" />
515        </EncoderProfile>
516
517        <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
518            <Video codec="h264"
519                   bitRate="1200000"
520                   width="352"
521                   height="288"
522                   frameRate="30" />
523
524            <Audio codec="aac"
525                   bitRate="96000"
526                   sampleRate="48000"
527                   channels="1" />
528        </EncoderProfile>
529
530        <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
531            <Video codec="h264"
532                   bitRate="512000"
533                   width="320"
534                   height="240"
535                   frameRate="30" />
536
537            <Audio codec="aac"
538                   bitRate="96000"
539                   sampleRate="48000"
540                   channels="1" />
541        </EncoderProfile>
542
543        <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
544            <Video codec="h264"
545                   bitRate="128000"
546                   width="176"
547                   height="144"
548                   frameRate="30" />
549
550            <Audio codec="amrnb"
551                   bitRate="12200"
552                   sampleRate="8000"
553                   channels="1" />
554        </EncoderProfile>
555
556        <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
557            <Video codec="h264"
558                   bitRate="48000000"
559                   width="3840"
560                   height="2160"
561                   frameRate="30" />
562
563            <!-- Audio settings are not used for timealpse video recording -->
564            <Audio codec="aac"
565                   bitRate="96000"
566                   sampleRate="48000"
567                   channels="1" />
568        </EncoderProfile>
569
570        <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
571            <Video codec="h264"
572                   bitRate="22000000"
573                   width="1920"
574                   height="1080"
575                   frameRate="30" />
576
577            <!-- Audio settings are not used for timealpse video recording -->
578            <Audio codec="aac"
579                   bitRate="96000"
580                   sampleRate="48000"
581                   channels="1" />
582        </EncoderProfile>
583
584        <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
585            <Video codec="h264"
586                   bitRate="12000000"
587                   width="1280"
588                   height="720"
589                   frameRate="30" />
590
591            <!-- Audio settings are not used for timealpse video recording -->
592            <Audio codec="aac"
593                   bitRate="96000"
594                   sampleRate="48000"
595                   channels="1" />
596        </EncoderProfile>
597
598        <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
599            <Video codec="h264"
600                   bitRate="6000000"
601                   width="720"
602                   height="480"
603                   frameRate="30" />
604
605            <!-- Audio settings are not used for timealpse video recording -->
606            <Audio codec="aac"
607                   bitRate="96000"
608                   sampleRate="48000"
609                   channels="1" />
610        </EncoderProfile>
611
612        <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
613            <Video codec="h264"
614                   bitRate="1200000"
615                   width="352"
616                   height="288"
617                   frameRate="30" />
618
619            <!-- Audio settings are not used for timealpse video recording -->
620            <Audio codec="aac"
621                   bitRate="96000"
622                   sampleRate="48000"
623                   channels="1" />
624        </EncoderProfile>
625
626        <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
627            <Video codec="h264"
628                   bitRate="192000"
629                   width="176"
630                   height="144"
631                   frameRate="30" />
632
633            <!-- Audio settings are not used for timealpse video recording -->
634            <Audio codec="amrnb"
635                   bitRate="12200"
636                   sampleRate="8000"
637                   channels="1" />
638        </EncoderProfile>
639
640        <ImageEncoding quality="90" />
641        <ImageEncoding quality="80" />
642        <ImageEncoding quality="70" />
643        <ImageDecoding memCap="20000000" />
644
645    </CamcorderProfiles>
646
647    <CamcorderProfiles cameraId="3">
648
649        <EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
650            <Video codec="h264"
651                   bitRate="72000000"
652                   width="3840"
653                   height="2160"
654                   frameRate="60" />
655
656            <Audio codec="aac"
657                   bitRate="96000"
658                   sampleRate="48000"
659                   channels="1" />
660        </EncoderProfile>
661
662        <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
663            <Video codec="h264"
664                   bitRate="33000000"
665                   width="1920"
666                   height="1080"
667                   frameRate="60" />
668
669            <Audio codec="aac"
670                   bitRate="96000"
671                   sampleRate="48000"
672                   channels="1" />
673        </EncoderProfile>
674
675        <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
676            <Video codec="h264"
677                   bitRate="12000000"
678                   width="1280"
679                   height="720"
680                   frameRate="30" />
681
682            <Audio codec="aac"
683                   bitRate="96000"
684                   sampleRate="48000"
685                   channels="1" />
686        </EncoderProfile>
687
688        <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
689            <Video codec="h264"
690                   bitRate="6000000"
691                   width="720"
692                   height="480"
693                   frameRate="30" />
694
695            <Audio codec="aac"
696                   bitRate="96000"
697                   sampleRate="48000"
698                   channels="1" />
699        </EncoderProfile>
700
701        <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
702            <Video codec="h264"
703                   bitRate="1200000"
704                   width="352"
705                   height="288"
706                   frameRate="30" />
707
708            <Audio codec="aac"
709                   bitRate="96000"
710                   sampleRate="48000"
711                   channels="1" />
712        </EncoderProfile>
713
714        <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
715            <Video codec="h264"
716                   bitRate="512000"
717                   width="320"
718                   height="240"
719                   frameRate="30" />
720
721            <Audio codec="aac"
722                   bitRate="96000"
723                   sampleRate="48000"
724                   channels="1" />
725        </EncoderProfile>
726
727        <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
728            <Video codec="h264"
729                   bitRate="128000"
730                   width="176"
731                   height="144"
732                   frameRate="30" />
733
734            <Audio codec="amrnb"
735                   bitRate="12200"
736                   sampleRate="8000"
737                   channels="1" />
738        </EncoderProfile>
739
740        <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
741            <Video codec="h264"
742                   bitRate="48000000"
743                   width="3840"
744                   height="2160"
745                   frameRate="30" />
746
747            <!-- Audio settings are not used for timealpse video recording -->
748            <Audio codec="aac"
749                   bitRate="96000"
750                   sampleRate="48000"
751                   channels="1" />
752        </EncoderProfile>
753
754        <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
755            <Video codec="h264"
756                   bitRate="22000000"
757                   width="1920"
758                   height="1080"
759                   frameRate="30" />
760
761            <!-- Audio settings are not used for timealpse video recording -->
762            <Audio codec="aac"
763                   bitRate="96000"
764                   sampleRate="48000"
765                   channels="1" />
766        </EncoderProfile>
767
768        <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
769            <Video codec="h264"
770                   bitRate="12000000"
771                   width="1280"
772                   height="720"
773                   frameRate="30" />
774
775            <!-- Audio settings are not used for timealpse video recording -->
776            <Audio codec="aac"
777                   bitRate="96000"
778                   sampleRate="48000"
779                   channels="1" />
780        </EncoderProfile>
781
782        <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
783            <Video codec="h264"
784                   bitRate="6000000"
785                   width="720"
786                   height="480"
787                   frameRate="30" />
788
789            <!-- Audio settings are not used for timealpse video recording -->
790            <Audio codec="aac"
791                   bitRate="96000"
792                   sampleRate="48000"
793                   channels="1" />
794        </EncoderProfile>
795
796        <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
797            <Video codec="h264"
798                   bitRate="1200000"
799                   width="352"
800                   height="288"
801                   frameRate="30" />
802
803            <!-- Audio settings are not used for timealpse video recording -->
804            <Audio codec="aac"
805                   bitRate="96000"
806                   sampleRate="48000"
807                   channels="1" />
808        </EncoderProfile>
809
810        <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
811            <Video codec="h264"
812                   bitRate="192000"
813                   width="176"
814                   height="144"
815                   frameRate="30" />
816
817            <!-- Audio settings are not used for timealpse video recording -->
818            <Audio codec="amrnb"
819                   bitRate="12200"
820                   sampleRate="8000"
821                   channels="1" />
822        </EncoderProfile>
823
824        <ImageEncoding quality="90" />
825        <ImageEncoding quality="80" />
826        <ImageEncoding quality="70" />
827        <ImageDecoding memCap="20000000" />
828
829    </CamcorderProfiles>
830
831    <CamcorderProfiles cameraId="4">
832
833        <EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
834            <Video codec="h264"
835                   bitRate="72000000"
836                   width="3840"
837                   height="2160"
838                   frameRate="60" />
839
840            <Audio codec="aac"
841                   bitRate="96000"
842                   sampleRate="48000"
843                   channels="1" />
844        </EncoderProfile>
845
846        <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
847            <Video codec="h264"
848                   bitRate="33000000"
849                   width="1920"
850                   height="1080"
851                   frameRate="60" />
852
853            <Audio codec="aac"
854                   bitRate="96000"
855                   sampleRate="48000"
856                   channels="1" />
857        </EncoderProfile>
858
859        <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
860            <Video codec="h264"
861                   bitRate="12000000"
862                   width="1280"
863                   height="720"
864                   frameRate="30" />
865
866            <Audio codec="aac"
867                   bitRate="96000"
868                   sampleRate="48000"
869                   channels="1" />
870        </EncoderProfile>
871
872        <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
873            <Video codec="h264"
874                   bitRate="6000000"
875                   width="720"
876                   height="480"
877                   frameRate="30" />
878
879            <Audio codec="aac"
880                   bitRate="96000"
881                   sampleRate="48000"
882                   channels="1" />
883        </EncoderProfile>
884
885        <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
886            <Video codec="h264"
887                   bitRate="1200000"
888                   width="352"
889                   height="288"
890                   frameRate="30" />
891
892            <Audio codec="aac"
893                   bitRate="96000"
894                   sampleRate="48000"
895                   channels="1" />
896        </EncoderProfile>
897
898        <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
899            <Video codec="h264"
900                   bitRate="512000"
901                   width="320"
902                   height="240"
903                   frameRate="30" />
904
905            <Audio codec="aac"
906                   bitRate="96000"
907                   sampleRate="48000"
908                   channels="1" />
909        </EncoderProfile>
910
911        <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
912            <Video codec="h264"
913                   bitRate="128000"
914                   width="176"
915                   height="144"
916                   frameRate="30" />
917
918            <Audio codec="amrnb"
919                   bitRate="12200"
920                   sampleRate="8000"
921                   channels="1" />
922        </EncoderProfile>
923
924        <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
925            <Video codec="h264"
926                   bitRate="48000000"
927                   width="3840"
928                   height="2160"
929                   frameRate="30" />
930
931            <!-- Audio settings are not used for timealpse video recording -->
932            <Audio codec="aac"
933                   bitRate="96000"
934                   sampleRate="48000"
935                   channels="1" />
936        </EncoderProfile>
937
938        <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
939            <Video codec="h264"
940                   bitRate="22000000"
941                   width="1920"
942                   height="1080"
943                   frameRate="30" />
944
945            <!-- Audio settings are not used for timealpse video recording -->
946            <Audio codec="aac"
947                   bitRate="96000"
948                   sampleRate="48000"
949                   channels="1" />
950        </EncoderProfile>
951
952        <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
953            <Video codec="h264"
954                   bitRate="12000000"
955                   width="1280"
956                   height="720"
957                   frameRate="30" />
958
959            <!-- Audio settings are not used for timealpse video recording -->
960            <Audio codec="aac"
961                   bitRate="96000"
962                   sampleRate="48000"
963                   channels="1" />
964        </EncoderProfile>
965
966        <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
967            <Video codec="h264"
968                   bitRate="6000000"
969                   width="720"
970                   height="480"
971                   frameRate="30" />
972
973            <!-- Audio settings are not used for timealpse video recording -->
974            <Audio codec="aac"
975                   bitRate="96000"
976                   sampleRate="48000"
977                   channels="1" />
978        </EncoderProfile>
979
980        <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
981            <Video codec="h264"
982                   bitRate="1200000"
983                   width="352"
984                   height="288"
985                   frameRate="30" />
986
987            <!-- Audio settings are not used for timealpse video recording -->
988            <Audio codec="aac"
989                   bitRate="96000"
990                   sampleRate="48000"
991                   channels="1" />
992        </EncoderProfile>
993
994        <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
995            <Video codec="h264"
996                   bitRate="192000"
997                   width="176"
998                   height="144"
999                   frameRate="30" />
1000
1001            <!-- Audio settings are not used for timealpse video recording -->
1002            <Audio codec="amrnb"
1003                   bitRate="12200"
1004                   sampleRate="8000"
1005                   channels="1" />
1006        </EncoderProfile>
1007
1008        <ImageEncoding quality="90" />
1009        <ImageEncoding quality="80" />
1010        <ImageEncoding quality="70" />
1011        <ImageDecoding memCap="20000000" />
1012
1013    </CamcorderProfiles>
1014
1015    <CamcorderProfiles cameraId="5">
1016
1017        <EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
1018            <Video codec="h264"
1019                   bitRate="48000000"
1020                   width="3840"
1021                   height="2160"
1022                   frameRate="30" />
1023
1024            <Audio codec="aac"
1025                   bitRate="96000"
1026                   sampleRate="48000"
1027                   channels="1" />
1028        </EncoderProfile>
1029
1030        <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
1031            <Video codec="h264"
1032                   bitRate="22000000"
1033                   width="1920"
1034                   height="1080"
1035                   frameRate="30" />
1036
1037            <Audio codec="aac"
1038                   bitRate="96000"
1039                   sampleRate="48000"
1040                   channels="1" />
1041        </EncoderProfile>
1042
1043        <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
1044            <Video codec="h264"
1045                   bitRate="12000000"
1046                   width="1280"
1047                   height="720"
1048                   frameRate="30" />
1049
1050            <Audio codec="aac"
1051                   bitRate="96000"
1052                   sampleRate="48000"
1053                   channels="1" />
1054        </EncoderProfile>
1055
1056        <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
1057            <Video codec="h264"
1058                   bitRate="6000000"
1059                   width="720"
1060                   height="480"
1061                   frameRate="30" />
1062
1063            <Audio codec="aac"
1064                   bitRate="96000"
1065                   sampleRate="48000"
1066                   channels="1" />
1067        </EncoderProfile>
1068
1069        <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
1070            <Video codec="h264"
1071                   bitRate="1200000"
1072                   width="352"
1073                   height="288"
1074                   frameRate="30" />
1075
1076            <Audio codec="aac"
1077                   bitRate="96000"
1078                   sampleRate="48000"
1079                   channels="1" />
1080        </EncoderProfile>
1081
1082        <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
1083            <Video codec="h264"
1084                   bitRate="512000"
1085                   width="320"
1086                   height="240"
1087                   frameRate="30" />
1088
1089            <Audio codec="aac"
1090                   bitRate="96000"
1091                   sampleRate="48000"
1092                   channels="1" />
1093        </EncoderProfile>
1094
1095        <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
1096            <Video codec="h264"
1097                   bitRate="128000"
1098                   width="176"
1099                   height="144"
1100                   frameRate="30" />
1101
1102            <Audio codec="amrnb"
1103                   bitRate="12200"
1104                   sampleRate="8000"
1105                   channels="1" />
1106        </EncoderProfile>
1107
1108        <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
1109            <Video codec="h264"
1110                   bitRate="48000000"
1111                   width="3840"
1112                   height="2160"
1113                   frameRate="30" />
1114
1115            <!-- Audio settings are not used for timealpse video recording -->
1116            <Audio codec="aac"
1117                   bitRate="96000"
1118                   sampleRate="48000"
1119                   channels="1" />
1120        </EncoderProfile>
1121
1122        <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
1123            <Video codec="h264"
1124                   bitRate="22000000"
1125                   width="1920"
1126                   height="1080"
1127                   frameRate="30" />
1128
1129            <!-- Audio settings are not used for timealpse video recording -->
1130            <Audio codec="aac"
1131                   bitRate="96000"
1132                   sampleRate="48000"
1133                   channels="1" />
1134        </EncoderProfile>
1135
1136        <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
1137            <Video codec="h264"
1138                   bitRate="12000000"
1139                   width="1280"
1140                   height="720"
1141                   frameRate="30" />
1142
1143            <!-- Audio settings are not used for timealpse video recording -->
1144            <Audio codec="aac"
1145                   bitRate="96000"
1146                   sampleRate="48000"
1147                   channels="1" />
1148        </EncoderProfile>
1149
1150        <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
1151            <Video codec="h264"
1152                   bitRate="6000000"
1153                   width="720"
1154                   height="480"
1155                   frameRate="30" />
1156
1157            <!-- Audio settings are not used for timealpse video recording -->
1158            <Audio codec="aac"
1159                   bitRate="96000"
1160                   sampleRate="48000"
1161                   channels="1" />
1162        </EncoderProfile>
1163
1164        <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
1165            <Video codec="h264"
1166                   bitRate="1200000"
1167                   width="352"
1168                   height="288"
1169                   frameRate="30" />
1170
1171            <!-- Audio settings are not used for timealpse video recording -->
1172            <Audio codec="aac"
1173                   bitRate="96000"
1174                   sampleRate="48000"
1175                   channels="1" />
1176        </EncoderProfile>
1177
1178        <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
1179            <Video codec="h264"
1180                   bitRate="192000"
1181                   width="176"
1182                   height="144"
1183                   frameRate="30" />
1184
1185            <!-- Audio settings are not used for timealpse video recording -->
1186            <Audio codec="amrnb"
1187                   bitRate="12200"
1188                   sampleRate="8000"
1189                   channels="1" />
1190        </EncoderProfile>
1191
1192        <ImageEncoding quality="90" />
1193        <ImageEncoding quality="80" />
1194        <ImageEncoding quality="70" />
1195        <ImageDecoding memCap="20000000" />
1196
1197    </CamcorderProfiles>
1198
1199    <CamcorderProfiles cameraId="6">
1200
1201        <EncoderProfile quality="2160p" fileFormat="mp4" duration="60">
1202            <Video codec="h264"
1203                   bitRate="48000000"
1204                   width="3840"
1205                   height="2160"
1206                   frameRate="30" />
1207
1208            <Audio codec="aac"
1209                   bitRate="96000"
1210                   sampleRate="48000"
1211                   channels="1" />
1212        </EncoderProfile>
1213
1214        <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
1215            <Video codec="h264"
1216                   bitRate="33000000"
1217                   width="1920"
1218                   height="1080"
1219                   frameRate="60" />
1220
1221            <Audio codec="aac"
1222                   bitRate="96000"
1223                   sampleRate="48000"
1224                   channels="1" />
1225        </EncoderProfile>
1226
1227        <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
1228            <Video codec="h264"
1229                   bitRate="12000000"
1230                   width="1280"
1231                   height="720"
1232                   frameRate="30" />
1233
1234            <Audio codec="aac"
1235                   bitRate="96000"
1236                   sampleRate="48000"
1237                   channels="1" />
1238        </EncoderProfile>
1239
1240        <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
1241            <Video codec="h264"
1242                   bitRate="6000000"
1243                   width="720"
1244                   height="480"
1245                   frameRate="30" />
1246
1247            <Audio codec="aac"
1248                   bitRate="96000"
1249                   sampleRate="48000"
1250                   channels="1" />
1251        </EncoderProfile>
1252
1253        <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
1254            <Video codec="h264"
1255                   bitRate="1200000"
1256                   width="352"
1257                   height="288"
1258                   frameRate="30" />
1259
1260            <Audio codec="aac"
1261                   bitRate="96000"
1262                   sampleRate="48000"
1263                   channels="1" />
1264        </EncoderProfile>
1265
1266        <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
1267            <Video codec="h264"
1268                   bitRate="512000"
1269                   width="320"
1270                   height="240"
1271                   frameRate="30" />
1272
1273            <Audio codec="aac"
1274                   bitRate="96000"
1275                   sampleRate="48000"
1276                   channels="1" />
1277        </EncoderProfile>
1278
1279        <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
1280            <Video codec="h264"
1281                   bitRate="128000"
1282                   width="176"
1283                   height="144"
1284                   frameRate="30" />
1285
1286            <Audio codec="amrnb"
1287                   bitRate="12200"
1288                   sampleRate="8000"
1289                   channels="1" />
1290        </EncoderProfile>
1291
1292        <EncoderProfile quality="timelapse2160p" fileFormat="mp4" duration="60">
1293            <Video codec="h264"
1294                   bitRate="48000000"
1295                   width="3840"
1296                   height="2160"
1297                   frameRate="30" />
1298
1299            <!-- Audio settings are not used for timealpse video recording -->
1300            <Audio codec="aac"
1301                   bitRate="96000"
1302                   sampleRate="48000"
1303                   channels="1" />
1304        </EncoderProfile>
1305
1306        <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
1307            <Video codec="h264"
1308                   bitRate="22000000"
1309                   width="1920"
1310                   height="1080"
1311                   frameRate="30" />
1312
1313            <!-- Audio settings are not used for timealpse video recording -->
1314            <Audio codec="aac"
1315                   bitRate="96000"
1316                   sampleRate="48000"
1317                   channels="1" />
1318        </EncoderProfile>
1319
1320        <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
1321            <Video codec="h264"
1322                   bitRate="12000000"
1323                   width="1280"
1324                   height="720"
1325                   frameRate="30" />
1326
1327            <!-- Audio settings are not used for timealpse video recording -->
1328            <Audio codec="aac"
1329                   bitRate="96000"
1330                   sampleRate="48000"
1331                   channels="1" />
1332        </EncoderProfile>
1333
1334        <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
1335            <Video codec="h264"
1336                   bitRate="6000000"
1337                   width="720"
1338                   height="480"
1339                   frameRate="30" />
1340
1341            <!-- Audio settings are not used for timealpse video recording -->
1342            <Audio codec="aac"
1343                   bitRate="96000"
1344                   sampleRate="48000"
1345                   channels="1" />
1346        </EncoderProfile>
1347
1348        <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
1349            <Video codec="h264"
1350                   bitRate="1200000"
1351                   width="352"
1352                   height="288"
1353                   frameRate="30" />
1354
1355            <!-- Audio settings are not used for timealpse video recording -->
1356            <Audio codec="aac"
1357                   bitRate="96000"
1358                   sampleRate="48000"
1359                   channels="1" />
1360        </EncoderProfile>
1361
1362        <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
1363            <Video codec="h264"
1364                   bitRate="192000"
1365                   width="176"
1366                   height="144"
1367                   frameRate="30" />
1368
1369            <!-- Audio settings are not used for timealpse video recording -->
1370            <Audio codec="amrnb"
1371                   bitRate="12200"
1372                   sampleRate="8000"
1373                   channels="1" />
1374        </EncoderProfile>
1375
1376        <ImageEncoding quality="90" />
1377        <ImageEncoding quality="80" />
1378        <ImageEncoding quality="70" />
1379        <ImageDecoding memCap="20000000" />
1380
1381    </CamcorderProfiles>
1382
1383    <CamcorderProfiles cameraId="7">
1384
1385        <EncoderProfile quality="1080p" fileFormat="mp4" duration="60">
1386            <Video codec="h264"
1387                   bitRate="22000000"
1388                   width="1920"
1389                   height="1080"
1390                   frameRate="30" />
1391
1392            <Audio codec="aac"
1393                   bitRate="96000"
1394                   sampleRate="48000"
1395                   channels="1" />
1396        </EncoderProfile>
1397
1398        <EncoderProfile quality="720p" fileFormat="mp4" duration="60">
1399            <Video codec="h264"
1400                   bitRate="12000000"
1401                   width="1280"
1402                   height="720"
1403                   frameRate="30" />
1404
1405            <Audio codec="aac"
1406                   bitRate="96000"
1407                   sampleRate="48000"
1408                   channels="1" />
1409        </EncoderProfile>
1410
1411        <EncoderProfile quality="480p" fileFormat="mp4" duration="60">
1412            <Video codec="h264"
1413                   bitRate="6000000"
1414                   width="720"
1415                   height="480"
1416                   frameRate="30" />
1417
1418            <Audio codec="aac"
1419                   bitRate="96000"
1420                   sampleRate="48000"
1421                   channels="1" />
1422        </EncoderProfile>
1423
1424        <EncoderProfile quality="cif" fileFormat="mp4" duration="60">
1425            <Video codec="h264"
1426                   bitRate="1200000"
1427                   width="352"
1428                   height="288"
1429                   frameRate="30" />
1430
1431            <Audio codec="aac"
1432                   bitRate="96000"
1433                   sampleRate="48000"
1434                   channels="1" />
1435        </EncoderProfile>
1436
1437        <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
1438            <Video codec="h264"
1439                   bitRate="512000"
1440                   width="320"
1441                   height="240"
1442                   frameRate="30" />
1443
1444            <Audio codec="aac"
1445                   bitRate="96000"
1446                   sampleRate="48000"
1447                   channels="1" />
1448        </EncoderProfile>
1449
1450        <EncoderProfile quality="qcif" fileFormat="3gp" duration="60">
1451            <Video codec="h264"
1452                   bitRate="128000"
1453                   width="176"
1454                   height="144"
1455                   frameRate="30" />
1456
1457            <Audio codec="amrnb"
1458                   bitRate="12200"
1459                   sampleRate="8000"
1460                   channels="1" />
1461        </EncoderProfile>
1462
1463        <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="60">
1464            <Video codec="h264"
1465                   bitRate="22000000"
1466                   width="1920"
1467                   height="1080"
1468                   frameRate="30" />
1469
1470            <!-- Audio settings are not used for timealpse video recording -->
1471            <Audio codec="aac"
1472                   bitRate="96000"
1473                   sampleRate="48000"
1474                   channels="1" />
1475        </EncoderProfile>
1476
1477        <EncoderProfile quality="timelapse720p" fileFormat="mp4" duration="60">
1478            <Video codec="h264"
1479                   bitRate="12000000"
1480                   width="1280"
1481                   height="720"
1482                   frameRate="30" />
1483
1484            <!-- Audio settings are not used for timealpse video recording -->
1485            <Audio codec="aac"
1486                   bitRate="96000"
1487                   sampleRate="48000"
1488                   channels="1" />
1489        </EncoderProfile>
1490
1491        <EncoderProfile quality="timelapse480p" fileFormat="mp4" duration="60">
1492            <Video codec="h264"
1493                   bitRate="6000000"
1494                   width="720"
1495                   height="480"
1496                   frameRate="30" />
1497
1498            <!-- Audio settings are not used for timealpse video recording -->
1499            <Audio codec="aac"
1500                   bitRate="96000"
1501                   sampleRate="48000"
1502                   channels="1" />
1503        </EncoderProfile>
1504
1505        <EncoderProfile quality="timelapsecif" fileFormat="mp4" duration="60">
1506            <Video codec="h264"
1507                   bitRate="1200000"
1508                   width="352"
1509                   height="288"
1510                   frameRate="30" />
1511
1512            <!-- Audio settings are not used for timealpse video recording -->
1513            <Audio codec="aac"
1514                   bitRate="96000"
1515                   sampleRate="48000"
1516                   channels="1" />
1517        </EncoderProfile>
1518
1519        <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="60">
1520            <Video codec="h264"
1521                   bitRate="192000"
1522                   width="176"
1523                   height="144"
1524                   frameRate="30" />
1525
1526            <!-- Audio settings are not used for timealpse video recording -->
1527            <Audio codec="amrnb"
1528                   bitRate="12200"
1529                   sampleRate="8000"
1530                   channels="1" />
1531        </EncoderProfile>
1532
1533        <ImageEncoding quality="90" />
1534        <ImageEncoding quality="80" />
1535        <ImageEncoding quality="70" />
1536        <ImageDecoding memCap="20000000" />
1537
1538    </CamcorderProfiles>
1539
1540    <EncoderOutputFileFormat name="3gp" />
1541    <EncoderOutputFileFormat name="mp4" />
1542
1543    <!--
1544         If a codec is not enabled, it is invisible to the applications
1545         In other words, the applications won't be able to use the codec
1546         or query the capabilities of the codec at all if it is disabled
1547    -->
1548
1549    <!--
1550         FIXME : we only check Mpeg4 encorder cap and other codec doesn't check
1551                 codec cap
1552    -->
1553    <VideoEncoderCap name="hevc" enabled="true"
1554        minBitRate="64000" maxBitRate="100000000"
1555        minFrameWidth="128" maxFrameWidth="3840"
1556        minFrameHeight="96" maxFrameHeight="2160"
1557        minFrameRate="15" maxFrameRate="30" />
1558
1559    <VideoEncoderCap name="h264" enabled="true"
1560        minBitRate="64000" maxBitRate="100000000"
1561        minFrameWidth="128" maxFrameWidth="3840"
1562        minFrameHeight="96" maxFrameHeight="2160"
1563        minFrameRate="15" maxFrameRate="30" />
1564
1565    <VideoEncoderCap name="h263" enabled="true"
1566        minBitRate="64000" maxBitRate="1000000"
1567        minFrameWidth="128" maxFrameWidth="1920"
1568        minFrameHeight="96" maxFrameHeight="1080"
1569        minFrameRate="15" maxFrameRate="30" />
1570
1571    <VideoEncoderCap name="m4v" enabled="true"
1572        minBitRate="64000" maxBitRate="2000000"
1573        minFrameWidth="128" maxFrameWidth="1920"
1574        minFrameHeight="96" maxFrameHeight="1080"
1575        minFrameRate="15" maxFrameRate="30" />
1576
1577    <AudioEncoderCap name="aac" enabled="true"
1578        minBitRate="758" maxBitRate="288000"
1579        minSampleRate="8000" maxSampleRate="48000"
1580        minChannels="1" maxChannels="1" />
1581
1582    <AudioEncoderCap name="heaac" enabled="true"
1583        minBitRate="8000" maxBitRate="64000"
1584        minSampleRate="16000" maxSampleRate="48000"
1585        minChannels="1" maxChannels="1" />
1586
1587    <AudioEncoderCap name="aaceld" enabled="true"
1588        minBitRate="16000" maxBitRate="192000"
1589        minSampleRate="16000" maxSampleRate="48000"
1590        minChannels="1" maxChannels="1" />
1591
1592    <AudioEncoderCap name="amrwb" enabled="true"
1593        minBitRate="6600" maxBitRate="23050"
1594        minSampleRate="16000" maxSampleRate="16000"
1595        minChannels="1" maxChannels="1" />
1596
1597    <AudioEncoderCap name="amrnb" enabled="true"
1598        minBitRate="5525" maxBitRate="12200"
1599        minSampleRate="8000" maxSampleRate="8000"
1600        minChannels="1" maxChannels="1" />
1601
1602    <!--
1603        FIXME:
1604        We do not check decoder capabilities at present
1605        At present, we only check whether windows media is visible
1606        for TEST applications. For other applications, we do
1607        not perform any checks at all.
1608    -->
1609    <VideoDecoderCap name="wmv" enabled="false"/>
1610    <AudioDecoderCap name="wma" enabled="false"/>
1611</MediaSettings>
1612