Serviio Icon on Sony XMB menu



I think, it's a simple dlna feature to implementin your Xml Device Description:
You probably have to add more image mimetype , and different resolution for example MediaTomb had:
- Code:
...
<icon>
<mimetype>image/png</mimetype>
<width>120</width>
<height>120</height>
<depth>24</depth>
<url>/icons/mt-icon120.png</url>
</icon>
<icon>
<mimetype>image/x-ms-bmp</mimetype>
<width>120</width>
<height>120</height>
<depth>24</depth>
<url>/icons/mt-icon120.bmp</url>
</icon>
<icon>
<mimetype>image/jpeg</mimetype>
<width>120</width>
<height>120</height>
<depth>24</depth>
<url>/icons/mt-icon120.jpg</url>
</icon>
<icon>
<mimetype>image/png</mimetype>
<width>48</width>
<height>48</height>
<depth>24</depth>
<url>/icons/mt-icon48.png</url>
</icon>
<icon>
<mimetype>image/x-ms-bmp</mimetype>
<width>48</width>
<height>48</height>
<depth>24</depth>
<url>/icons/mt-icon48.bmp</url>
</icon>
<icon>
<mimetype>image/jpeg</mimetype>
<width>48</width>
<height>48</height>
<depth>24</depth>
<url>/icons/mt-icon48.jpg</url>
</icon>
<icon>
<mimetype>image/png</mimetype>
<width>32</width>
<height>32</height>
<depth>8</depth>
<url>/icons/mt-icon32.png</url>
</icon>
<icon>
<mimetype>image/x-ms-bmp</mimetype>
<width>32</width>
<height>32</height>
<depth>8</depth>
<url>/icons/mt-icon32.bmp</url>
</icon>
<icon>
<mimetype>image/jpeg</mimetype>
<width>32</width>
<height>32</height>
<depth>8</depth>
<url>/icons/mt-icon32.jpg</url>
</icon>
...