Home | History | Annotate | Download | only in fugu
      1 <?xml version="1.0" encoding="utf-8" ?>
      2 <!-- Copyright (C) 2012 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 
     17 <!--
     18 <!DOCTYPE MediaCodecs [
     19 <!ELEMENT Include EMPTY>
     20 <!ATTLIST Include href CDATA #REQUIRED>
     21 <!ELEMENT MediaCodecs (Decoders|Encoders|Include)*>
     22 <!ELEMENT Decoders (MediaCodec|Include)*>
     23 <!ELEMENT Encoders (MediaCodec|Include)*>
     24 <!ELEMENT MediaCodec (Type|Quirk|Include)*>
     25 <!ATTLIST MediaCodec name CDATA #REQUIRED>
     26 <!ATTLIST MediaCodec type CDATA>
     27 <!ELEMENT Type EMPTY>
     28 <!ATTLIST Type name CDATA #REQUIRED>
     29 <!ELEMENT Quirk EMPTY>
     30 <!ATTLIST Quirk name CDATA #REQUIRED>
     31 ]>
     32 
     33 There's a simple and a complex syntax to declare the availability of a
     34 media codec:
     35 
     36 A codec that properly follows the OpenMax spec and therefore doesn't have any
     37 quirks and that only supports a single content type can be declared like so:
     38 
     39     <MediaCodec name="OMX.foo.bar" type="something/interesting" />
     40 
     41 If a codec has quirks OR supports multiple content types, the following syntax
     42 can be used:
     43 
     44     <MediaCodec name="OMX.foo.bar" >
     45         <Type name="something/interesting" />
     46         <Type name="something/else" />
     47         ...
     48         <Quirk name="requires-allocate-on-input-ports" />
     49         <Quirk name="requires-allocate-on-output-ports" />
     50         <Quirk name="output-buffers-are-unreadable" />
     51     </MediaCodec>
     52 
     53 Only the three quirks included above are recognized at this point:
     54 
     55 "requires-allocate-on-input-ports"
     56     must be advertised if the component does not properly support specification
     57     of input buffers using the OMX_UseBuffer(...) API but instead requires
     58     OMX_AllocateBuffer to be used.
     59 
     60 "requires-allocate-on-output-ports"
     61     must be advertised if the component does not properly support specification
     62     of output buffers using the OMX_UseBuffer(...) API but instead requires
     63     OMX_AllocateBuffer to be used.
     64 
     65 "output-buffers-are-unreadable"
     66     must be advertised if the emitted output buffers of a decoder component
     67     are not readable, i.e. use a custom format even though abusing one of
     68     the official OMX colorspace constants.
     69     Clients of such decoders will not be able to access the decoded data,
     70     naturally making the component much less useful. The only use for
     71     a component with this quirk is to render the output to the screen.
     72     Audio decoders MUST NOT advertise this quirk.
     73     Video decoders that advertise this quirk must be accompanied by a
     74     corresponding color space converter for thumbnail extraction,
     75     matching surfaceflinger support that can render the custom format to
     76     a texture and possibly other code, so just DON'T USE THIS QUIRK.
     77 
     78 
     79 -->
     80 
     81 <MediaCodecs>
     82     <Include href="media_codecs_google_audio.xml" />
     83 
     84     <Settings>
     85         <Setting name="max-video-encoder-input-buffers" value="2" />
     86     </Settings>
     87     <Decoders>
     88         <MediaCodec name="OMX.Intel.VideoDecoder.MPEG4" type="video/mp4v-es">
     89             <Limit name="size" min="96x32" max="1920x1088" />
     90             <Limit name="alignment" value="2x2" />
     91             <Limit name="block-size" value="16x16" />
     92             <Limit name="blocks-per-second" range="12-244800" />
     93             <Limit name="bitrate" range="1-20000000" />
     94             <Feature name="adaptive-playback" optional="yes" />
     95             <Limit name="concurrent-instances" max="4" />
     96         </MediaCodec>
     97         <MediaCodec name="OMX.Intel.VideoDecoder.H263" type="video/3gpp">
     98             <Limit name="size" min="96x32" max="720x576" />
     99             <Limit name="alignment" value="2x2" />
    100             <Limit name="block-size" value="16x16" />
    101             <Limit name="blocks-per-second" range="12-48600" />
    102             <Limit name="bitrate" range="1-16000000" />
    103             <Feature name="adaptive-playback" optional="yes" />
    104             <Limit name="concurrent-instances" max="1" />
    105         </MediaCodec>
    106         <MediaCodec name="OMX.Intel.VideoDecoder.AVC" type="video/avc">
    107             <Limit name="size" min="96x32" max="2560x1440" />
    108             <Limit name="alignment" value="2x2" />
    109             <Limit name="block-size" value="16x16" />
    110             <Limit name="blocks-per-second" range="12-864000" />
    111             <Limit name="bitrate" range="1-50000000" />
    112             <Feature name="adaptive-playback" />
    113             <Limit name="concurrent-instances" max="5" />
    114         </MediaCodec>
    115         <MediaCodec name="OMX.Intel.VideoDecoder.AVC.secure" type="video/avc">
    116             <Limit name="size" min="96x32" max="1920x1088" />
    117             <Limit name="alignment" value="2x2" />
    118             <Limit name="block-size" value="16x16" />
    119             <Limit name="blocks-per-second" range="12-522240" />
    120             <Limit name="bitrate" range="1-50000000" />
    121             <Feature name="adaptive-playback" />
    122             <Feature name="secure-playback" required="true" />
    123             <Limit name="concurrent-instances" max="1" />
    124         </MediaCodec>
    125         <MediaCodec name="OMX.Intel.VideoDecoder.VP8" type="video/x-vnd.on2.vp8">
    126             <Limit name="size" min="96x32" max="1920x1088" />
    127             <Limit name="alignment" value="2x2" />
    128             <Limit name="block-size" value="16x16" />
    129             <Limit name="blocks-per-second" range="12-489600" />
    130             <Limit name="bitrate" range="1-50000000" />
    131             <Feature name="adaptive-playback" />
    132             <Limit name="concurrent-instances" max="4" />
    133         </MediaCodec>
    134         <MediaCodec name="OMX.Intel.VideoDecoder.MPEG2" type="video/mpeg2">
    135             <Limit name="size" min="96x32" max="1920x1088" />
    136             <Limit name="alignment" value="2x2" />
    137             <Limit name="block-size" value="16x16" />
    138             <Limit name="blocks-per-second" range="12-489600" />
    139             <Limit name="bitrate" range="1-80000000" />
    140             <Feature name="adaptive-playback" />
    141             <Limit name="concurrent-instances" max="3" />
    142         </MediaCodec>
    143         <MediaCodec name="OMX.Intel.VideoDecoder.VP9.hybrid" type="video/x-vnd.on2.vp9">
    144             <Limit name="size" min="16x16" max="1920x1088" />
    145             <Limit name="alignment" value="2x2" />
    146             <Limit name="block-size" value="16x16" />
    147             <Limit name="blocks-per-second" range="1-244800" />
    148             <Limit name="bitrate" range="1-8000000" />
    149             <Feature name="adaptive-playback" />
    150             <Limit name="concurrent-instances" max="2" />
    151         </MediaCodec>
    152         <MediaCodec name="OMX.Intel.sw_vd.h265" type="video/hevc">
    153             <Limit name="size" min="16x16" max="1920x1088" />
    154             <Limit name="alignment" value="2x2" />
    155             <Limit name="block-size" value="16x16" />
    156             <Limit name="blocks-per-second" range="1-244800" />
    157             <Limit name="bitrate" range="1-8000000" />
    158             <Feature name="adaptive-playback" />
    159             <Limit name="concurrent-instances" max="5" />
    160         </MediaCodec>
    161 
    162        <MediaCodec name="OMX.google.gsm.decoder" type="audio/gsm" />
    163        <MediaCodec name="OMX.Intel.alac.decoder" type="audio/alac" />
    164     </Decoders>
    165 
    166     <Encoders>
    167         <MediaCodec name="OMX.Intel.VideoEncoder.AVC" type="video/avc" >
    168             <Quirk name="requires-allocate-on-input-ports" />
    169             <Limit name="size" min="176x144" max="1920x1088" />
    170             <Limit name="alignment" value="8x8" />
    171             <Limit name="block-size" value="16x16" />
    172             <Limit name="frame-rate" range="1-60" />
    173             <Limit name="bitrate" range="1-50000000" />
    174             <Limit name="concurrent-instances" max="3" />
    175             <Feature name="intra-refresh" optional="yes"/>
    176         </MediaCodec>
    177         <MediaCodec name="OMX.Intel.VideoEncoder.VP8" type="video/x-vnd.on2.vp8" >
    178             <Quirk name="requires-allocate-on-input-ports" />
    179             <Limit name="size" min="176x144" max="1920x1088" />
    180             <Limit name="alignment" value="8x8" />
    181             <Limit name="block-size" value="16x16" />
    182             <Limit name="frame-rate" range="1-30" />
    183             <Limit name="bitrate" range="1-10000000" />
    184             <Limit name="concurrent-instances" max="3" />
    185             <Feature name="intra-refresh" optional="yes"/>
    186         </MediaCodec>
    187     </Encoders>
    188 
    189     <Include href="media_codecs_google_tv.xml" />
    190     <Include href="media_codecs_google_video_le.xml" />
    191 </MediaCodecs>
    192