summaryrefslogtreecommitdiffstats
path: root/apps/plugins/lua/rocklib.c
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2018-10-31 09:23:00 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2018-10-31 09:23:00 -0400
commitbbfe4778114c76e23e9c391225da2d6f74812735 (patch)
tree880218b3cc344e6345b192a5e9f514a93257db2a /apps/plugins/lua/rocklib.c
parent74fe5203d06aee3ad3498fa9164762cfa1efa3d5 (diff)
downloadrockbox-bbfe4778114c76e23e9c391225da2d6f74812735.tar.gz
rockbox-bbfe4778114c76e23e9c391225da2d6f74812735.zip
Lua Add underscores in audio, pcm, playlist functions
Lessen confusion for end users looking for the underlying function names in plugin.h Change-Id: I6662dc7bd9f22d83af372b3d3c5af53d9a1eac9a
Diffstat (limited to 'apps/plugins/lua/rocklib.c')
-rw-r--r--apps/plugins/lua/rocklib.c19
1 files changed, 8 insertions, 11 deletions
diff --git a/apps/plugins/lua/rocklib.c b/apps/plugins/lua/rocklib.c
index ed76122118..54c2bc0c03 100644
--- a/apps/plugins/lua/rocklib.c
+++ b/apps/plugins/lua/rocklib.c
@@ -197,9 +197,9 @@ RB_WRAP(playlist)
PLAYL_SHUFFLE, PLAYL_SYNC, PLAYL_REMOVEALLTRACKS,
PLAYL_INSERTTRACK, PLAYL_INSERTDIRECTORY, PLAYL_ECOUNT};
- const char *playlist_option[] = {"amount", "add", "create", "start", "resumetrack",
- "resume", "shuffle", "sync", "removealltracks",
- "inserttrack", "insertdirectory", NULL};
+ const char *playlist_option[] = {"amount", "add", "create", "start", "resume_track",
+ "resume", "shuffle", "sync", "remove_all_tracks",
+ "insert_track", "insert_directory", NULL};
const char *filename, *dir;
int result = 0;
@@ -210,7 +210,6 @@ RB_WRAP(playlist)
int option = luaL_checkoption (L, 1, NULL, playlist_option);
switch(option)
{
- default:
case PLAYL_AMOUNT:
result = rb->playlist_amount();
break;
@@ -277,15 +276,14 @@ RB_WRAP(audio)
AUDIO_RESUME, AUDIO_NEXT, AUDIO_PREV, AUDIO_FFREWIND,
AUDIO_FLUSHANDRELOADTRACKS, AUDIO_GETPOS, AUDIO_ECOUNT};
const char *audio_option[] = {"status", "play", "stop", "pause",
- "resume", "next", "prev", "ffrewind",
- "flushandreloadtracks", "getfilepos", NULL};
+ "resume", "next", "prev", "ff_rewind",
+ "flush_and_reload_tracks", "get_file_pos", NULL};
long elapsed, offset, newtime;
int status = rb->audio_status();
int option = luaL_checkoption (L, 1, NULL, audio_option);
switch(option)
{
- default:
case AUDIO_STATUS:
break;
case AUDIO_PLAY:
@@ -341,9 +339,9 @@ RB_WRAP(pcm)
PCM_PLAYSTOP, PCM_PLAYPAUSE, PCM_PLAYLOCK, PCM_PLAYUNLOCK,
PCM_CALCULATEPEAKS, PCM_SETFREQUENCY, PCM_GETBYTESWAITING, PCM_ECOUNT};
- const char *pcm_option[] = {"applysettings", "isplaying", "ispaused",
- "playstop", "playpause", "playlock", "playunlock",
- "calculatepeaks", "setfrequency", "getbyteswaiting", NULL};
+ const char *pcm_option[] = {"apply_settings", "is_playing", "is_paused",
+ "play_stop", "play_pause", "play_lock", "play_unlock",
+ "calculate_peaks", "set_frequency", "get_bytes_waiting", NULL};
bool b_result;
int left, right;
size_t byteswait;
@@ -353,7 +351,6 @@ RB_WRAP(pcm)
int option = luaL_checkoption (L, 1, NULL, pcm_option);
switch(option)
{
- default:
case PCM_APPLYSETTINGS:
rb->pcm_apply_settings();
break;