]> git.sesse.net Git - nageru/blobdiff - nageru/theme.lua
More theme cleaning.
[nageru] / nageru / theme.lua
index bd22aa4a8d126cedbd271d7668f414a3b5e74fc1..011dc4f84c79c1636ffd6a46de2816eadaa1f50b 100644 (file)
@@ -358,24 +358,12 @@ function get_scene(num, t, width, height, signals)
                local res = {
                        width = signals:get_width(signal_num),
                        height = signals:get_height(signal_num),
-                       interlaced = signals:get_interlaced(signal_num),
-                       is_connected = signals:get_is_connected(signal_num),
-                       has_signal = signals:get_has_signal(signal_num),
-                       frame_rate_nom = signals:get_frame_rate_nom(signal_num),
-                       frame_rate_den = signals:get_frame_rate_den(signal_num)
                }
-
-               if res.interlaced then
+               if signals:get_interlaced(signal_num) then
                        -- Convert height from frame height to field height.
                        -- (Needed for e.g. place_rectangle.)
                        res.height = res.height * 2
-
-                       -- Show field rate instead of frame rate; really for cosmetics only
-                       -- (and actually contrary to EBU recommendations, although in line
-                       -- with typical user expectations).
-                       res.frame_rate_nom = res.frame_rate_nom * 2
                end
-
                input_resolution[signal_num] = res
 
                local text_res = signals:get_human_readable_resolution(signal_num)