summaryrefslogtreecommitdiff
path: root/apps/plugins/mp3_encoder.c
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2008-03-23 22:20:36 +0000
committerDave Chapman <dave@dchapman.com>2008-03-23 22:20:36 +0000
commit22fbe5f83f795a8e79bb21d4c00c3ec648f521ca (patch)
tree251fd888ffb019960d9c2fbd585affce5e74cb67 /apps/plugins/mp3_encoder.c
parent7c5722ad789bbc67286bda60dfb1955cfdd63b51 (diff)
downloadrockbox-22fbe5f83f795a8e79bb21d4c00c3ec648f521ca.zip
rockbox-22fbe5f83f795a8e79bb21d4c00c3ec648f521ca.tar.gz
rockbox-22fbe5f83f795a8e79bb21d4c00c3ec648f521ca.tar.bz2
rockbox-22fbe5f83f795a8e79bb21d4c00c3ec648f521ca.tar.xz
Start using bitmap strips in cabbiev2 - this commits converts 220x176x16 and 320x240x16, reducing the number of bitmaps to 8 for each WPS. If you want to keep your installation tidy, remove the .rockbox/wps/cabbiev2/ directory before updating to ensure unused bitmaps are deleted.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16770 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mp3_encoder.c')
0 files changed, 0 insertions, 0 deletions
lass="hl com">/* PLA stands for Plugin Lib Action :P */ enum { PLA_UP = LAST_ACTION_PLACEHOLDER+1, PLA_DOWN, PLA_LEFT, PLA_RIGHT, PLA_UP_REPEAT, PLA_DOWN_REPEAT, PLA_LEFT_REPEAT, PLA_RIGHT_REPEAT, PLA_INC, PLA_DEC, PLA_INC_REPEAT, PLA_DEC_REPEAT, PLA_QUIT, PLA_START, PLA_MENU, PLA_FIRE, PLA_FIRE_REPEAT, LAST_PLUGINLIB_ACTION }; #if defined(HAVE_REMOTE_LCD) extern const struct button_mapping remote_directions[]; #endif extern const struct button_mapping generic_directions[]; extern const struct button_mapping generic_left_right_fire[]; extern const struct button_mapping generic_actions[]; extern const struct button_mapping generic_increase_decrease[]; int pluginlib_getaction(int timeout, const struct button_mapping *plugin_contexts[], int count); #endif /* __PLUGINLIB_ACTIONS_H__ */