Jean-Baptiste Queru | 671476b | 2012-05-29 10:40:37 -0700 | [diff] [blame] | 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 MediaCodecs (Decoders,Encoders)> |
| 20 | <!ELEMENT Decoders (MediaCodec*)> |
| 21 | <!ELEMENT Encoders (MediaCodec*)> |
| 22 | <!ELEMENT MediaCodec (Type*,Quirk*)> |
| 23 | <!ATTLIST MediaCodec name CDATA #REQUIRED> |
| 24 | <!ATTLIST MediaCodec type CDATA> |
| 25 | <!ELEMENT Type EMPTY> |
| 26 | <!ATTLIST Type name CDATA #REQUIRED> |
| 27 | <!ELEMENT Quirk EMPTY> |
| 28 | <!ATTLIST Quirk name CDATA #REQUIRED> |
| 29 | ]> |
| 30 | |
| 31 | There's a simple and a complex syntax to declare the availability of a |
| 32 | media codec: |
| 33 | |
| 34 | A codec that properly follows the OpenMax spec and therefore doesn't have any |
| 35 | quirks and that only supports a single content type can be declared like so: |
| 36 | |
| 37 | <MediaCodec name="OMX.foo.bar" type="something/interesting" /> |
| 38 | |
| 39 | If a codec has quirks OR supports multiple content types, the following syntax |
| 40 | can be used: |
| 41 | |
| 42 | <MediaCodec name="OMX.foo.bar" > |
| 43 | <Type name="something/interesting" /> |
| 44 | <Type name="something/else" /> |
| 45 | ... |
| 46 | <Quirk name="requires-allocate-on-input-ports" /> |
| 47 | <Quirk name="requires-allocate-on-output-ports" /> |
| 48 | <Quirk name="output-buffers-are-unreadable" /> |
| 49 | </MediaCodec> |
| 50 | |
| 51 | Only the three quirks included above are recognized at this point: |
| 52 | |
| 53 | "requires-allocate-on-input-ports" |
| 54 | must be advertised if the component does not properly support specification |
| 55 | of input buffers using the OMX_UseBuffer(...) API but instead requires |
| 56 | OMX_AllocateBuffer to be used. |
| 57 | |
| 58 | "requires-allocate-on-output-ports" |
| 59 | must be advertised if the component does not properly support specification |
| 60 | of output buffers using the OMX_UseBuffer(...) API but instead requires |
| 61 | OMX_AllocateBuffer to be used. |
| 62 | |
| 63 | "output-buffers-are-unreadable" |
| 64 | must be advertised if the emitted output buffers of a decoder component |
| 65 | are not readable, i.e. use a custom format even though abusing one of |
| 66 | the official OMX colorspace constants. |
| 67 | Clients of such decoders will not be able to access the decoded data, |
| 68 | naturally making the component much less useful. The only use for |
| 69 | a component with this quirk is to render the output to the screen. |
| 70 | Audio decoders MUST NOT advertise this quirk. |
| 71 | Video decoders that advertise this quirk must be accompanied by a |
| 72 | corresponding color space converter for thumbnail extraction, |
| 73 | matching surfaceflinger support that can render the custom format to |
| 74 | a texture and possibly other code, so just DON'T USE THIS QUIRK. |
| 75 | |
| 76 | --> |
| 77 | |
| 78 | <MediaCodecs> |
| 79 | <Decoders> |
| 80 | <MediaCodec name="OMX.Nvidia.mp4.decode" type="video/mp4v-es" /> |
| 81 | <MediaCodec name="OMX.Nvidia.h263.decode" type="video/3gpp" /> |
| 82 | <MediaCodec name="OMX.Nvidia.h264.decode" type="video/avc" /> |
| 83 | <MediaCodec name="OMX.Nvidia.mpeg2v.decode" type="video/mpeg2" /> |
| 84 | <MediaCodec name="OMX.Nvidia.mp2.decoder" type="audio/mpeg-L2" /> |
| 85 | |
| 86 | <MediaCodec name="OMX.google.mp3.decoder" type="audio/mpeg" /> |
| 87 | <MediaCodec name="OMX.google.amrnb.decoder" type="audio/3gpp" /> |
| 88 | <MediaCodec name="OMX.google.amrwb.decoder" type="audio/amr-wb" /> |
| 89 | <MediaCodec name="OMX.google.aac.decoder" type="audio/mp4a-latm" /> |
| 90 | <MediaCodec name="OMX.google.g711.alaw.decoder" type="audio/g711-alaw" /> |
| 91 | <MediaCodec name="OMX.google.g711.mlaw.decoder" type="audio/g711-mlaw" /> |
| 92 | <MediaCodec name="OMX.google.vorbis.decoder" type="audio/vorbis" /> |
Marco Nelissen | 7caad26 | 2012-11-15 16:34:03 -0800 | [diff] [blame] | 93 | <MediaCodec name="OMX.google.gsm.decoder" type="audio/gsm" /> |
Jean-Baptiste Queru | 671476b | 2012-05-29 10:40:37 -0700 | [diff] [blame] | 94 | |
| 95 | <MediaCodec name="OMX.google.mpeg4.decoder" type="video/mp4v-es" /> |
| 96 | <MediaCodec name="OMX.google.h263.decoder" type="video/3gpp" /> |
| 97 | <MediaCodec name="OMX.google.h264.decoder" type="video/avc" /> |
| 98 | <MediaCodec name="OMX.google.vpx.decoder" type="video/x-vnd.on2.vp8" /> |
| 99 | </Decoders> |
| 100 | |
| 101 | <Encoders> |
| 102 | <MediaCodec name="OMX.Nvidia.mp4.encoder" type="video/mp4v-es" /> |
| 103 | <MediaCodec name="OMX.Nvidia.h263.encoder" type="video/3gpp" /> |
| 104 | <MediaCodec name="OMX.Nvidia.h264.encoder" type="video/avc" /> |
| 105 | |
| 106 | <MediaCodec name="OMX.google.amrnb.encoder" type="audio/3gpp" /> |
| 107 | <MediaCodec name="OMX.google.amrwb.encoder" type="audio/amr-wb" /> |
| 108 | <MediaCodec name="OMX.google.aac.encoder" type="audio/mp4a-latm" /> |
| 109 | <MediaCodec name="OMX.google.flac.encoder" type="audio/flac" /> |
James Dong | c837db2 | 2013-02-12 17:40:52 -0800 | [diff] [blame] | 110 | <MediaCodec name="OMX.google.vpx.encoder" type="video/x-vnd.on2.vp8" /> |
Jean-Baptiste Queru | 671476b | 2012-05-29 10:40:37 -0700 | [diff] [blame] | 111 | </Encoders> |
| 112 | </MediaCodecs> |