Guest User

Untitled

a guest
Feb 11th, 2020
1,478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.44 KB | None | 0 0
  1.     <application>
  2.         <video>
  3.             <!--List all the supported resolutions in the order of preference!
  4. Default: "800x480", "1280x720", "1920x1080". It is mandatory to have "800x480"
  5. Note that the <density> tag has to be followed by <value> tag -->
  6.             <resolution>
  7.                 <value>800x480</value>
  8.                 <density>160</density>
  9.             </resolution>
  10.             <codec_profile>
  11.                 <!--Default codec_profile value : "H.264_BP_L3.1"
  12. Other possible values: "H.264_BP_L3.2", "H.264_BP_L4.2"-->
  13.                 <value>H.264_BP_L3.1</value>
  14.                 <!--Default decoder_additional_depth : 0.
  15. This is additional frames decoder needs to display a frame. -->
  16.                 <decoder_additional_depth>2</decoder_additional_depth>
  17.             </codec_profile>
  18.             <!--Default: 60. Other possible value: 30 -->
  19.             <fps>30</fps>
  20.         </video>
  21.         <audio>
  22.             <!-- Audio configuration of cabin media. If this tag is not present,
  23.                 default values will be considered to create media channel. -->
  24.             <stream_media>
  25.                 <!--Format of type: (codec)_(sample_rate)_(channels)
  26. Available options for codec: AAC_LC, AAC_LC_ADTS or PCM
  27. Available options for sample rate: 48KHZ
  28. Available options for channels: 2 (For stereo)
  29. Default: PCM_48KHZ_2 -->
  30.                 <type>PCM_48KHZ_2</type>
  31.                 <!-- Bits per sample. Default: 16 -->
  32.                 <bps>16</bps>
  33.                 <!-- This is to mention the device ID, where sound will be
  34. redirected. If any value is given that will be considered while doing setup.
  35. For an example: hw:0,1 -->
  36.                 <device_id>hw:0,2</device_id>
  37.             </stream_media>
  38.             <!-- Audio configuration of guidance voice. If this tag is not present,
  39.                 default values will be considered to create guidance channel.-->
  40.             <stream_guidance>
  41.                 <!-- Format of type: (codec)_(sample_rate)_(channels)
  42. Available options for codec: PCM
  43. Available options for sample rate: 16KHZ
  44. Available options for channels: 1 (For Mono)
  45. Default: PCM_16KHZ_1 -->
  46.                 <type>PCM_16KHZ_1</type>
  47.                 <!-- Bits per sample. Default: 16 -->
  48.                 <bps>16</bps>
  49.                 <!-- This is to mention the device ID, where sound will be
  50. redirected. If any value is given that will be considered while doing setup.
  51. For an example: hw:0,1 -->
  52.                 <device_id>hw:1,2</device_id>
  53.             </stream_guidance>
  54.             <!-- Microphone source settings-->
  55.             <stream_microphone>
  56.                 <!-- Format of type: (codec)_(sample_rate)_(channels)
  57. Available options for codec: PCM
  58. Available options for sample rate: 16KHZ, 44KHZ, 48KHZ
  59. Available options for channels: 1 (For Mono)
  60. Default: PCM_16KHZ_1 -->
  61.                 <type>PCM_16KHZ_1</type>
  62.                 <!-- Bits per sample. Default: 16 -->
  63.                 <bps>16</bps>
  64.                 <!-- This is to mention the device ID, from where sound will be
  65. captured. If any value is given that will be considered while doing setup.
  66. For an example: hw:0,1 -->
  67.                 <device_id>hw:0,4</device_id>
  68.             </stream_microphone>
  69.         </audio>
  70.         <!-- List of application / activity status subscription required.
  71. No default is assumed. Set the corresponding <subscribe> tag to "TRUE" to subscribe. "FALSE" otherwise.-->
  72.         <subscription_list>
  73.             <phone>
  74.                 <subscribe>TRUE</subscribe>
  75.             </phone>
  76.             <media>
  77.                 <subscribe>TRUE</subscribe>
  78.             </media>
  79.             <navigation>
  80.                 <subscribe>TRUE</subscribe>
  81.                 <!-- The below attributes will be considered if <subscribe> is TRUE -->
  82.                 <!--Default: "IMAGE". Other possible value: "ENUM"-->
  83.                 <cluster_type>IMAGE</cluster_type>
  84.                 <!--Default: 128 -->
  85.                 <icon_width>128</icon_width>
  86.                 <!--Default: 128 -->
  87.                 <icon_height>128</icon_height>
  88.                 <!--Default: 16 -->
  89.                 <icon_color_depth>16</icon_color_depth>
  90.                 <!-- Minimum interval time to get navigation status data in ms.
  91. Default: 500-->
  92.                 <min_interval>500</min_interval>
  93.             </navigation>
  94.             <notification>
  95.                 <subscribe>TRUE</subscribe>
  96.             </notification>
  97.             <radio>
  98.                 <subscribe>TRUE</subscribe>
  99.                 <!--Can add multiple radio configs. No default is assumed.
  100. The below attributes will be considered if <subscribe> is TRUE -->
  101.                 <radio_config>
  102.                     <!--Possible values: "FM" or "AM" -->
  103.                     <type>FM</type>
  104.                     <start_freq>0</start_freq>
  105.                     <end_freq>0</end_freq>
  106.                     <channel_gap>0</channel_gap>
  107.                 </radio_config>
  108.             </radio>
  109.             <vec>
  110.                 <service>
  111.                     <!--First mention all the whitelisted apps name and then
  112.                         the service name -->
  113.                     <app>com.vwag.infotainment.gal.exlap</app>
  114.                     <app>com.vwag.infotainment.aa.vex</app>
  115.                     <app>de.vw.exlap.android</app>
  116.                     <service_name>com.vwag.infotainment.gal.exlap</service_name>
  117.                 </service>
  118.             </vec>
  119.         </subscription_list>
  120.     </application>
Add Comment
Please, Sign In to add comment