forked from len0rd/rockbox
Lua restore audio_set_recording_gain, audio_set_output,input
Did not mean to wipe out these function when I consolidated audio Made the regex for audio_ and playlist_ exact matches instead of fuzzy Change-Id: I7537d1b494afb114c8b6333ea177b1e482f6b672
This commit is contained in:
parent
6d8d2422ea
commit
2e1ca20097
1 changed files with 5 additions and 2 deletions
|
@ -83,8 +83,11 @@ my @forbidden_functions = ('^open$',
|
|||
'^lcd_scroll_stop$',
|
||||
'^__.+$',
|
||||
'^.+_(un)?cached$',
|
||||
'^audio_.+$',
|
||||
'playlist_.+$',
|
||||
'^audio_(status|get_file_pos|flush_and_reload_tracks)$',
|
||||
'^audio_(ff_rewind|next|prev|play|pause|resume|stop)$',
|
||||
'^playlist_(amount|add|create|start|resume|shuffle)$',
|
||||
'^playlist_(sync|resume_track|remove_all_tracks)$',
|
||||
'^playlist_(insert_track|insert_directory)$',
|
||||
'^round_value_to_list32$');
|
||||
|
||||
my $rocklib = sprintf("%s/rocklib.c", $ARGV[0]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue