Advertisement
Guest User

Untitled

a guest
Oct 8th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.55 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!-- Copyright 2015 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. <Include href="media_codecs_google_telephony.xml" />
  84. <Settings>
  85. <Setting name="max-video-encoder-input-buffers" value="9" />
  86. </Settings>
  87. <Encoders>
  88. <MediaCodec name="OMX.qcom.video.encoder.mpeg4" type="video/mp4v-es" >
  89. <Quirk name="requires-allocate-on-input-ports" />
  90. <Quirk name="requires-allocate-on-output-ports" />
  91. <Quirk name="requires-loaded-to-idle-after-allocation"/>
  92. <Limit name="size" min="96x64" max="1920x1088" />
  93. <Limit name="alignment" value="2x2" />
  94. <Limit name="block-size" value="16x16" />
  95. <Limit name="blocks-per-second" min="1" max="489600" />
  96. <Limit name="bitrate" range="1-60000000" />
  97. <Limit name="concurrent-instances" max="13" />
  98. </MediaCodec>
  99. <MediaCodec name="OMX.qcom.video.encoder.h263" type="video/3gpp" >
  100. <Quirk name="requires-allocate-on-input-ports" />
  101. <Quirk name="requires-allocate-on-output-ports" />
  102. <Quirk name="requires-loaded-to-idle-after-allocation" />
  103. <Limit name="size" min="96x64" max="720x576" />
  104. <Limit name="alignment" value="2x2" />
  105. <Limit name="concurrent-instances" max="13" />
  106. </MediaCodec>
  107. <MediaCodec name="OMX.qcom.video.encoder.avc" type="video/avc" >
  108. <Quirk name="requires-allocate-on-input-ports" />
  109. <Quirk name="requires-allocate-on-output-ports" />
  110. <Quirk name="requires-loaded-to-idle-after-allocation" />
  111. <Limit name="size" min="96x64" max="3840x2160" />
  112. <Limit name="alignment" value="2x2" />
  113. <Limit name="block-size" value="16x16" />
  114. <Limit name="blocks-per-second" min="1" max="972000" />
  115. <Limit name="bitrate" range="1-100000000" />
  116. <Limit name="concurrent-instances" max="13" />
  117. </MediaCodec>
  118. <MediaCodec name="OMX.qcom.video.encoder.vp8" type="video/x-vnd.on2.vp8" >
  119. <Quirk name="requires-allocate-on-input-ports" />
  120. <Quirk name="requires-allocate-on-output-ports" />
  121. <Quirk name="requires-loaded-to-idle-after-allocation" />
  122. <Limit name="size" min="96x64" max="3840x2160" />
  123. <Limit name="alignment" value="2x2" />
  124. <Limit name="block-size" value="16x16" />
  125. <Limit name="blocks-per-second" min="1" max="777600" />
  126. <Limit name="bitrate" range="1-20000000" />
  127. <Limit name="concurrent-instances" max="13" />
  128. </MediaCodec>
  129. </Encoders>
  130. <Decoders>
  131. <MediaCodec name="OMX.qcom.video.decoder.avc" type="video/avc" >
  132. <Quirk name="requires-allocate-on-input-ports" />
  133. <Quirk name="requires-allocate-on-output-ports" />
  134. <Quirk name="defers-output-buffer-allocation" />
  135. <Limit name="size" min="64x64" max="3840x2160" />
  136. <Limit name="alignment" value="2x2" />
  137. <Limit name="block-size" value="16x16" />
  138. <Limit name="blocks-per-second" min="1" max="972000" />
  139. <Limit name="bitrate" range="1-100000000" />
  140. <Feature name="adaptive-playback" />
  141. <Limit name="concurrent-instances" max="13" />
  142. </MediaCodec>
  143. <MediaCodec name="OMX.qcom.video.decoder.avc.secure" type="video/avc" >
  144. <Quirk name="requires-allocate-on-input-ports" />
  145. <Quirk name="requires-allocate-on-output-ports" />
  146. <Quirk name="defers-output-buffer-allocation" />
  147. <Limit name="size" min="64x64" max="1920x1088" />
  148. <Limit name="alignment" value="2x2" />
  149. <Limit name="block-size" value="16x16" />
  150. <Limit name="blocks-per-second" min="1" max="972000" />
  151. <Limit name="bitrate" range="1-100000000" />
  152. <Feature name="adaptive-playback" />
  153. <Feature name="secure-playback" required="true" />
  154. <Limit name="concurrent-instances" max="2" />
  155. </MediaCodec>
  156. <MediaCodec name="OMX.qcom.video.decoder.mpeg4" type="video/mp4v-es" >
  157. <Quirk name="requires-allocate-on-input-ports" />
  158. <Quirk name="requires-allocate-on-output-ports" />
  159. <Quirk name="defers-output-buffer-allocation" />
  160. <Limit name="size" min="64x64" max="1920x1088" />
  161. <Limit name="alignment" value="2x2" />
  162. <Limit name="block-size" value="16x16" />
  163. <Limit name="blocks-per-second" min="1" max="489600" />
  164. <Limit name="bitrate" range="1-60000000" />
  165. <Feature name="adaptive-playback" />
  166. <Limit name="concurrent-instances" max="12" />
  167. </MediaCodec>
  168. <MediaCodec name="OMX.qcom.video.decoder.h263" type="video/3gpp" >
  169. <Quirk name="requires-allocate-on-input-ports" />
  170. <Quirk name="requires-allocate-on-output-ports" />
  171. <Quirk name="defers-output-buffer-allocation" />
  172. <Limit name="size" min="64x64" max="720x576" />
  173. <Limit name="alignment" value="2x2" />
  174. <Feature name="adaptive-playback" />
  175. <Limit name="concurrent-instances" max="12" />
  176. </MediaCodec>
  177. <MediaCodec name="OMX.qcom.video.decoder.vp8" type="video/x-vnd.on2.vp8" >
  178. <Quirk name="requires-allocate-on-input-ports" />
  179. <Quirk name="requires-allocate-on-output-ports" />
  180. <Quirk name="defers-output-buffer-allocation" />
  181. <Limit name="size" min="64x64" max="3840x2160" />
  182. <Limit name="alignment" value="2x2" />
  183. <Limit name="block-size" value="16x16" />
  184. <Limit name="blocks-per-second" min="1" max="777600" />
  185. <Limit name="bitrate" range="1-20000000" />
  186. <Feature name="adaptive-playback" />
  187. <Limit name="concurrent-instances" max="12" />
  188. </MediaCodec>
  189. <MediaCodec name="OMX.qcom.video.decoder.hevc" type="video/hevc" >
  190. <Quirk name="requires-allocate-on-input-ports" />
  191. <Quirk name="requires-allocate-on-output-ports" />
  192. <Limit name="size" min="64x64" max="4096x2160" />
  193. <Limit name="alignment" value="2x2" />
  194. <Limit name="block-size" value="16x16" />
  195. <Limit name="blocks-per-second" min="1" max="972000" />
  196. <Limit name="bitrate" range="1-100000000" />
  197. <Feature name="adaptive-playback" />
  198. <Limit name="concurrent-instances" max="12" />
  199. </MediaCodec>
  200. <MediaCodec name="OMX.qcom.video.decoder.hevc.secure" type="video/hevc" >
  201. <Quirk name="requires-allocate-on-input-ports" />
  202. <Quirk name="requires-allocate-on-output-ports" />
  203. <Limit name="size" min="64x64" max="1920x1088" />
  204. <Limit name="alignment" value="2x2" />
  205. <Limit name="block-size" value="16x16" />
  206. <Limit name="blocks-per-second" min="1" max="972000" />
  207. <Limit name="bitrate" range="1-100000000" />
  208. <Feature name="adaptive-playback" />
  209. <Feature name="secure-playback" required="true" />
  210. <Limit name="concurrent-instances" max="2" />
  211. </MediaCodec>
  212. </Decoders>
  213. <Include href="media_codecs_google_video.xml" />
  214. <Include href="media_codecs_ffmpeg.xml" />
  215. </MediaCodecs>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement