Commit 02a2c397 authored by Akash Mehrotra's avatar Akash Mehrotra Committed by Jean-Baptiste Kempf

Lua: httprequests.lua -- formatting fixes

parent 80d51438
...@@ -128,7 +128,6 @@ Band 0: 60 Hz, 1: 170 Hz, 2: 310 Hz, 3: 600 Hz, 4: 1 kHz, ...@@ -128,7 +128,6 @@ Band 0: 60 Hz, 1: 170 Hz, 2: 310 Hz, 3: 600 Hz, 4: 1 kHz,
<Display the list of presets available for the equalizer <Display the list of presets available for the equalizer
=======
playlist.xml: playlist.xml:
============= =============
< get the full playlist tree < get the full playlist tree
......
...@@ -31,10 +31,12 @@ local function stripslashes(s) ...@@ -31,10 +31,12 @@ local function stripslashes(s)
return string.gsub(s,"\\(.)","%1") return string.gsub(s,"\\(.)","%1")
end end
--Round the number to the specified precision
function round(what, precision) function round(what, precision)
if what then return math.floor(what*math.pow(10,precision)+0.5) / math.pow(10,precision) else return "" end if what then return math.floor(what*math.pow(10,precision)+0.5) / math.pow(10,precision) else return "" end
end end
--split text where it matches the delimiter
function strsplit(text, delimiter) function strsplit(text, delimiter)
local strfind = string.find local strfind = string.find
local strsub = string.sub local strsub = string.sub
...@@ -374,6 +376,7 @@ local aout = vlc.object.aout() ...@@ -374,6 +376,7 @@ local aout = vlc.object.aout()
s.rate=1 s.rate=1
s.subtitledelay=0 s.subtitledelay=0
end end
if vout then if vout then
s.fullscreen=vlc.var.get(vout,"fullscreen") s.fullscreen=vlc.var.get(vout,"fullscreen")
s.aspectratio=vlc.var.get(vout,"aspect-ratio"); s.aspectratio=vlc.var.get(vout,"aspect-ratio");
...@@ -381,6 +384,7 @@ local aout = vlc.object.aout() ...@@ -381,6 +384,7 @@ local aout = vlc.object.aout()
else else
s.fullscreen=0 s.fullscreen=0
end end
if aout then if aout then
local filters=vlc.var.get(aout,"audio-filter") local filters=vlc.var.get(aout,"audio-filter")
local temp=strsplit(filters,":") local temp=strsplit(filters,":")
...@@ -391,16 +395,19 @@ local aout = vlc.object.aout() ...@@ -391,16 +395,19 @@ local aout = vlc.object.aout()
id=id+1 id=id+1
end end
end end
s.videoeffects={} s.videoeffects={}
s.videoeffects.hue=round(vlc.config.get("hue"),2) s.videoeffects.hue=round(vlc.config.get("hue"),2)
s.videoeffects.brightness=round(vlc.config.get("brightness"),2) s.videoeffects.brightness=round(vlc.config.get("brightness"),2)
s.videoeffects.contrast=round(vlc.config.get("contrast"),2) s.videoeffects.contrast=round(vlc.config.get("contrast"),2)
s.videoeffects.saturation=round(vlc.config.get("saturation"),2) s.videoeffects.saturation=round(vlc.config.get("saturation"),2)
s.videoeffects.gamma=round(vlc.config.get("gamma"),2) s.videoeffects.gamma=round(vlc.config.get("gamma"),2)
s.state=vlc.playlist.status() s.state=vlc.playlist.status()
s.random=vlc.var.get(playlist,"random") s.random=vlc.var.get(playlist,"random")
s.loop=vlc.var.get(playlist,"loop") s.loop=vlc.var.get(playlist,"loop")
s["repeat"]=vlc.var.get(playlist,"repeat") s["repeat"]=vlc.var.get(playlist,"repeat")
s.equalizer={} s.equalizer={}
s.equalizer.preamp=round(vlc.equalizer.preampget(),2) s.equalizer.preamp=round(vlc.equalizer.preampget(),2)
s.equalizer.bands=vlc.equalizer.equalizerget() s.equalizer.bands=vlc.equalizer.equalizerget()
...@@ -432,10 +439,7 @@ local aout = vlc.object.aout() ...@@ -432,10 +439,7 @@ local aout = vlc.object.aout()
local tag = string.gsub(k,"_","") local tag = string.gsub(k,"_","")
s.stats[tag]=xmlString(v) s.stats[tag]=xmlString(v)
end end
end end
return s return s
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment