summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/rocklib_aux.pl
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2018-10-30 13:56:36 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2018-10-30 14:16:01 -0400
commit74fe5203d06aee3ad3498fa9164762cfa1efa3d5 (patch)
treef153b31312cd5d3a3863f013d2908064fb244ca1 /apps/plugins/lua/rocklib_aux.pl
parent2e1ca200974ca4c60e651c199ec5883b308ac38b (diff)
downloadrockbox-74fe5203d06aee3ad3498fa9164762cfa1efa3d5.tar.gz
rockbox-74fe5203d06aee3ad3498fa9164762cfa1efa3d5.zip
lua consolidate pcm_ functions
The way to call the pcm functions has changed rb.pcm("option", var) rb.pcm_set_frequency(freq) = becomes rb.pcm("pcmsetfrequency", freq) added pcm.lua to the includes for conversion to old functions if your script is broken by this change you simply add `require("pcm")` to the top for the old functionality added rb.pcm("calculatepeaks") Change-Id: I092057b0c0b5575e567862661f122da1ca2680e8
Diffstat (limited to 'apps/plugins/lua/rocklib_aux.pl')
-rwxr-xr-xapps/plugins/lua/rocklib_aux.pl4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/lua/rocklib_aux.pl b/apps/plugins/lua/rocklib_aux.pl
index d16351ac77..f52c64e98b 100755
--- a/apps/plugins/lua/rocklib_aux.pl
+++ b/apps/plugins/lua/rocklib_aux.pl
@@ -88,6 +88,10 @@ my @forbidden_functions = ('^open$',
88 '^playlist_(amount|add|create|start|resume|shuffle)$', 88 '^playlist_(amount|add|create|start|resume|shuffle)$',
89 '^playlist_(sync|resume_track|remove_all_tracks)$', 89 '^playlist_(sync|resume_track|remove_all_tracks)$',
90 '^playlist_(insert_track|insert_directory)$', 90 '^playlist_(insert_track|insert_directory)$',
91 '^pcm_is_(playing|paused)$',
92 '^pcm_play_(stop|pause|lock|unlock)$',
93 '^pcm_(apply_settings|get_bytes_waiting)$',
94 '^pcm_(set_frequency|calculate_peaks)$',
91 '^round_value_to_list32$'); 95 '^round_value_to_list32$');
92 96
93my $rocklib = sprintf("%s/rocklib.c", $ARGV[0]); 97my $rocklib = sprintf("%s/rocklib.c", $ARGV[0]);