diff options
author | popcornmix <popcornmix@gmail.com> | 2013-05-21 14:36:08 +0100 |
---|---|---|
committer | popcornmix <popcornmix@gmail.com> | 2013-05-29 22:04:32 +0100 |
commit | d98e9c59526f33413b8a412cf86bfbbcda67f454 (patch) | |
tree | af3a04bc76db05ea3cd0842ad1ca781e8773283e /system | |
parent | 31f386c39105f29c7c52b5884022e29ab8a126c5 (diff) |
[rbp] Disable unimplemented settings options
I've been through the settings carefully and have made any settings that are not implemented on Pi be not-visible.
If and when support is added for probing capabilities of the media player then the hiding of unsupported options can be removed.
Thanks to montellese for making this configuration so simple.
Diffstat (limited to 'system')
-rw-r--r-- | system/settings/rbp.xml | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/system/settings/rbp.xml b/system/settings/rbp.xml index daa27f3713..0369c50615 100644 --- a/system/settings/rbp.xml +++ b/system/settings/rbp.xml @@ -1,10 +1,33 @@ <?xml version="1.0" encoding="utf-8" ?> -<settings><section id="system"> +<settings> + <section id="videos"> + <category id="videoplayer"> + <group id="2"> + <setting id="videoplayer.rendermethod"> + <visible>false</visible> + </setting> + <setting id="videoplayer.hqscalers"> + <visible>false</visible> + </setting> + <setting id="videoplayer.synctype"> + <visible>false</visible> + </setting> + </group> + </category> + </section> + + <section id="system"> <category id="videoscreen"> <group id="1"> <setting id="videoscreen.screen"> <visible>false</visible> </setting> + <setting id="videoscreen.blankdisplays"> + <visible>false</visible> + </setting> + <setting id="videoscreen.fakefullscreen"> + <visible>false</visible> + </setting> </group> </category> <category id="audiooutput"> @@ -12,6 +35,12 @@ <setting id="audiooutput.mode"> <default>2</default> <!-- AUDIO_HDMI --> </setting> + <setting id="audiooutput.channels"> + <visible>false</visible> + </setting> + <setting id="audiooutput.stereoupmix"> + <visible>false</visible> + </setting> <setting id="audiooutput.passthroughaac"> <visible>false</visible> </setting> |