plugins: another round of making local things static and adding missing #includes

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31453 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2011-12-28 11:32:13 +00:00
parent 7949dd4dae
commit d2cdd80f5c
11 changed files with 57 additions and 52 deletions

View file

@ -1112,7 +1112,7 @@ void thread(void)
}
/* callback to end the TSR plugin, called before a new one gets loaded */
bool exit_tsr(bool reenter)
static bool exit_tsr(bool reenter)
{
if (reenter)
return false; /* dont let it start again */

View file

@ -745,7 +745,7 @@ do_main_menu (void)
return false;
}
void
static void
zoom_preview (int current)
{
set_zoom_display (current);

View file

@ -144,7 +144,7 @@ INLINE unsigned range_limit(int value)
* Perform dequantization and inverse DCT on one block of coefficients,
* producing a reduced-size 1x1 output block.
*/
void idct1x1(unsigned char* p_byte, int* inptr, int* quantptr, int skip_line)
static void idct1x1(unsigned char* p_byte, int* inptr, int* quantptr, int skip_line)
{
(void)skip_line; /* unused */
*p_byte = range_limit(inptr[0] * quantptr[0] >> 3);
@ -156,7 +156,7 @@ void idct1x1(unsigned char* p_byte, int* inptr, int* quantptr, int skip_line)
* Perform dequantization and inverse DCT on one block of coefficients,
* producing a reduced-size 2x2 output block.
*/
void idct2x2(unsigned char* p_byte, int* inptr, int* quantptr, int skip_line)
static void idct2x2(unsigned char* p_byte, int* inptr, int* quantptr, int skip_line)
{
int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5;
unsigned char* outptr;
@ -198,7 +198,7 @@ void idct2x2(unsigned char* p_byte, int* inptr, int* quantptr, int skip_line)
* Perform dequantization and inverse DCT on one block of coefficients,
* producing a reduced-size 4x4 output block.
*/
void idct4x4(unsigned char* p_byte, int* inptr, int* quantptr, int skip_line)
static void idct4x4(unsigned char* p_byte, int* inptr, int* quantptr, int skip_line)
{
int tmp0, tmp2, tmp10, tmp12;
int z1, z2, z3;
@ -282,7 +282,7 @@ void idct4x4(unsigned char* p_byte, int* inptr, int* quantptr, int skip_line)
/*
* Perform dequantization and inverse DCT on one block of coefficients.
*/
void idct8x8(unsigned char* p_byte, int* inptr, int* quantptr, int skip_line)
static void idct8x8(unsigned char* p_byte, int* inptr, int* quantptr, int skip_line)
{
long tmp0, tmp1, tmp2, tmp3;
long tmp10, tmp11, tmp12, tmp13;
@ -794,7 +794,7 @@ void default_huff_tbl(struct jpeg* p_jpeg)
}
/* Compute the derived values for a Huffman table */
void fix_huff_tbl(int* htbl, struct derived_tbl* dtbl)
static void fix_huff_tbl(int* htbl, struct derived_tbl* dtbl)
{
int p, i, l, si;
int lookbits, ctr;
@ -1081,7 +1081,7 @@ INLINE void drop_bits(struct bitstream* pb, int nbits)
}
/* re-synchronize to entropy data (skip restart marker) */
void search_restart(struct bitstream* pb)
static void search_restart(struct bitstream* pb)
{
pb->next_input_byte--; /* we may have overread it, taking 2 bytes */
/* search for a non-byte-padding marker, has to be RSTm or EOS */
@ -1245,6 +1245,7 @@ int jpeg_decode(struct jpeg* p_jpeg, unsigned char* p_pixel[3],
else return -1; /* not supported */
/* init bitstream, fake a restart to make it start */
bs.get_buffer = 0;
bs.next_input_byte = p_jpeg->p_entropy_data;
bs.bits_left = 0;
bs.input_end = p_jpeg->p_entropy_end;

View file

@ -383,7 +383,7 @@ static void LodePNG_InfoPng_init(LodePNG_InfoPng* info)
#endif
}
void LodePNG_InfoPng_cleanup(LodePNG_InfoPng* info)
static void LodePNG_InfoPng_cleanup(LodePNG_InfoPng* info)
{
LodePNG_InfoColor_cleanup(&info->color);
}

View file

@ -93,14 +93,14 @@ struct jackpot
};
#ifdef HAVE_LCD_CHARCELLS
void patterns_init(struct screen* display)
static void patterns_init(struct screen* display)
{
int i;
for(i=0;i<NB_SLOTS;i++)
char_patterns[i]=display->get_locked_pattern();
}
void patterns_deinit(struct screen* display)
static void patterns_deinit(struct screen* display)
{
/* Restore the old pattern */
int i;

View file

@ -683,7 +683,7 @@ int bpm_step_counter = 0;
#define MET_IS_PLAYING rb->mp3_is_playing()
#define MET_PLAY_STOP rb->mp3_play_stop()
void callback(unsigned char** start, size_t* size)
static void callback(unsigned char** start, size_t* size)
{
(void)start; /* unused parameter, avoid warning */
*size = 0; /* end of data */
@ -691,7 +691,7 @@ void callback(unsigned char** start, size_t* size)
rb->led(0);
}
void play_tock(void)
static void play_tock(void)
{
sound_active = true;
rb->led(1);

View file

@ -808,7 +808,7 @@ static void update_scroll_lines(void)
}
/* Create the lookup table with the scaling values for the reflections */
void init_reflect_table(void)
static void init_reflect_table(void)
{
int i;
for (i = 0; i < REFLECT_HEIGHT; i++)
@ -821,7 +821,7 @@ void init_reflect_table(void)
Create an index of all albums from the database.
Also store the album names so we can access them later.
*/
int create_album_index(void)
static int create_album_index(void)
{
album = ((struct album_data *)(buf_size + (char *) buf)) - 1;
rb->memset(&tcs, 0, sizeof(struct tagcache_search) );
@ -860,7 +860,7 @@ int create_album_index(void)
/**
Return a pointer to the album name of the given slide_index
*/
char* get_album_name(const int slide_index)
static char* get_album_name(const int slide_index)
{
return album_names + album[slide_index].name_idx;
}
@ -869,14 +869,14 @@ char* get_album_name(const int slide_index)
Return a pointer to the track name of the active album
create_track_index has to be called first.
*/
char* get_track_name(const int track_index)
static char* get_track_name(const int track_index)
{
if ( track_index < track_count )
return track_names + tracks[track_index].name_idx;
return 0;
}
#if PF_PLAYBACK_CAPABLE
char* get_track_filename(const int track_index)
static char* get_track_filename(const int track_index)
{
if ( track_index < track_count )
return track_names + tracks[track_index].filename_idx;
@ -884,7 +884,7 @@ char* get_track_filename(const int track_index)
}
#endif
int get_wps_current_index(void)
static int get_wps_current_index(void)
{
struct mp3entry *id3 = rb->audio_current_track();
if(id3 && id3->album) {
@ -901,7 +901,7 @@ int get_wps_current_index(void)
/**
Compare two unsigned ints passed via pointers.
*/
int compare_tracks (const void *a_v, const void *b_v)
static int compare_tracks (const void *a_v, const void *b_v)
{
uint32_t a = ((struct track_data *)a_v)->sort;
uint32_t b = ((struct track_data *)b_v)->sort;
@ -911,7 +911,7 @@ int compare_tracks (const void *a_v, const void *b_v)
/**
Create the track index of the given slide_index.
*/
void create_track_index(const int slide_index)
static void create_track_index(const int slide_index)
{
if ( slide_index == track_index )
return;
@ -1022,7 +1022,7 @@ fail:
The algorithm looks for the first track of the given album uses
find_albumart to find the filename.
*/
bool get_albumart_for_index_from_db(const int slide_index, char *buf,
static bool get_albumart_for_index_from_db(const int slide_index, char *buf,
int buflen)
{
if ( slide_index == -1 )
@ -1069,7 +1069,7 @@ bool get_albumart_for_index_from_db(const int slide_index, char *buf,
/**
Draw the PictureFlow logo
*/
void draw_splashscreen(void)
static void draw_splashscreen(void)
{
unsigned char * buf_tmp = buf;
size_t buf_tmp_size = buf_size;
@ -1116,7 +1116,7 @@ void draw_splashscreen(void)
/**
Draw a simple progress bar
*/
void draw_progressbar(int step)
static void draw_progressbar(int step)
{
int txt_w, txt_h;
const int bar_height = 22;
@ -1149,7 +1149,7 @@ void draw_progressbar(int step)
/* Calculate modified FNV hash of string
* has good avalanche behaviour and uniform distribution
* see http://home.comcast.net/~bretm/hash/ */
unsigned int mfnv(char *str)
static unsigned int mfnv(char *str)
{
const unsigned int p = 16777619;
unsigned int hash = 0x811C9DC5; // 2166136261;
@ -1167,7 +1167,7 @@ unsigned int mfnv(char *str)
/**
Save the given bitmap as filename in the pfraw format
*/
bool save_pfraw(char* filename, struct bitmap *bm)
static bool save_pfraw(char* filename, struct bitmap *bm)
{
struct pfraw_header bmph;
bmph.width = bm->width;
@ -1190,7 +1190,7 @@ bool save_pfraw(char* filename, struct bitmap *bm)
Precomupte the album art images and store them in CACHE_PREFIX.
Use the "?" bitmap if image is not found.
*/
bool create_albumart_cache(void)
static bool create_albumart_cache(void)
{
int ret;
@ -1254,7 +1254,7 @@ bool create_albumart_cache(void)
Create the "?" slide, that is shown while loading
or when no cover was found.
*/
int create_empty_slide(bool force)
static int create_empty_slide(bool force)
{
if ( force || ! rb->file_exists( EMPTY_SLIDE ) ) {
struct bitmap input_bmp;
@ -1278,7 +1278,7 @@ int create_empty_slide(bool force)
/**
Thread used for loading and preparing bitmaps in the background
*/
void thread(void)
static void thread(void)
{
long sleep_time = 5 * HZ;
struct queue_event ev;
@ -1306,7 +1306,7 @@ void thread(void)
/**
End the thread by posting the EV_EXIT event
*/
void end_pf_thread(void)
static void end_pf_thread(void)
{
if ( thread_is_running ) {
rb->queue_post(&thread_q, EV_EXIT, 0);
@ -1321,7 +1321,7 @@ void end_pf_thread(void)
/**
Create the thread an setup the event queue
*/
bool create_pf_thread(void)
static bool create_pf_thread(void)
{
/* put the thread's queue in the bcast list */
rb->queue_init(&thread_q, true);
@ -1507,7 +1507,7 @@ static bool free_slide_prio(int prio)
/**
Read the pfraw image given as filename and return the hid of the buffer
*/
int read_pfraw(char* filename, int prio)
static int read_pfraw(char* filename, int prio)
{
struct pfraw_header bmph;
int fh = rb->open(filename, O_RDONLY);
@ -1727,7 +1727,7 @@ static inline struct dim *surface(const int slide_index)
/**
adjust slides so that they are in "steady state" position
*/
void reset_slides(void)
static void reset_slides(void)
{
center_slide.angle = 0;
center_slide.cx = 0;
@ -1768,7 +1768,7 @@ void reset_slides(void)
* z
* TODO: support moving the side slides toward or away from the camera
*/
void recalc_offsets(void)
static void recalc_offsets(void)
{
PFreal xs = PFREAL_HALF - DISPLAY_WIDTH * PFREAL_HALF;
PFreal zo;
@ -1844,7 +1844,7 @@ static inline unsigned fade_color(pix_t c, unsigned a)
* optimized by saving the numerator and denominator of the fraction, which can
* then be incremented by (z + zo) and sin(r) respectively.
*/
void render_slide(struct slide_data *slide, const int alpha)
static void render_slide(struct slide_data *slide, const int alpha)
{
struct dim *bmp = surface(slide->slide_index);
if (!bmp) {
@ -1989,7 +1989,7 @@ static inline void set_current_slide(const int slide_index)
/**
Start the animation for changing slides
*/
void start_animation(void)
static void start_animation(void)
{
step = (target < center_slide.slide_index) ? -1 : 1;
pf_state = pf_scrolling;
@ -1998,7 +1998,7 @@ void start_animation(void)
/**
Go to the previous slide
*/
void show_previous_slide(void)
static void show_previous_slide(void)
{
if (step == 0) {
if (center_index > 0) {
@ -2017,7 +2017,7 @@ void show_previous_slide(void)
/**
Go to the next slide
*/
void show_next_slide(void)
static void show_next_slide(void)
{
if (step == 0) {
if (center_index < number_of_slides - 1) {
@ -2036,7 +2036,7 @@ void show_next_slide(void)
/**
Render the slides. Updates only the offscreen buffer.
*/
void render_all_slides(void)
static void render_all_slides(void)
{
mylcd_set_background(G_BRIGHT(0));
/* TODO: Optimizes this by e.g. invalidating rects */
@ -2091,7 +2091,7 @@ void render_all_slides(void)
/**
Updates the animation effect. Call this periodically from a timer.
*/
void update_scroll_animation(void)
static void update_scroll_animation(void)
{
if (step == 0)
return;
@ -2193,7 +2193,7 @@ void update_scroll_animation(void)
/**
Cleanup the plugin
*/
void cleanup(void)
static void cleanup(void)
{
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
rb->cpu_boost(false);
@ -2210,7 +2210,7 @@ void cleanup(void)
/**
Shows the settings menu
*/
int settings_menu(void)
static int settings_menu(void)
{
int selection = 0;
bool old_val;
@ -2320,7 +2320,7 @@ enum {
PF_MENU_QUIT,
};
int main_menu(void)
static int main_menu(void)
{
int selection = 0;
int result;
@ -2371,7 +2371,7 @@ int main_menu(void)
/**
Animation step for zooming into the current cover
*/
void update_cover_in_animation(void)
static void update_cover_in_animation(void)
{
cover_animation_keyframe++;
if( cover_animation_keyframe < 20 ) {
@ -2391,7 +2391,7 @@ void update_cover_in_animation(void)
/**
Animation step for zooming out the current cover
*/
void update_cover_out_animation(void)
static void update_cover_out_animation(void)
{
cover_animation_keyframe++;
if( cover_animation_keyframe <= 15 ) {
@ -2481,7 +2481,7 @@ void reset_track_list(void)
/**
Display the list of tracks
*/
void show_track_list(void)
static void show_track_list(void)
{
mylcd_clear_display();
if ( center_slide.slide_index != track_index ) {
@ -2518,7 +2518,7 @@ void show_track_list(void)
}
}
void select_next_track(void)
static void select_next_track(void)
{
if ( selected_track < track_count - 1 ) {
selected_track++;
@ -2527,7 +2527,7 @@ void select_next_track(void)
}
}
void select_prev_track(void)
static void select_prev_track(void)
{
if (selected_track > 0 ) {
if (selected_track==start_index_track_list) start_index_track_list--;
@ -2539,7 +2539,7 @@ void select_prev_track(void)
/*
* Puts the current tracklist into a newly created playlist and starts playling
*/
void start_playback(bool append)
static void start_playback(bool append)
{
static int old_playlist = -1, old_shuffle = 0;
int count = 0;
@ -2584,7 +2584,7 @@ play:
/**
Draw the current album name
*/
void draw_album_text(void)
static void draw_album_text(void)
{
if (show_album_name == ALBUM_NAME_HIDE)
return;
@ -2633,7 +2633,7 @@ void draw_album_text(void)
/**
Display an error message and wait for input.
*/
void error_wait(const char *message)
static void error_wait(const char *message)
{
rb->splashf(0, "%s. Press any button to continue.", message);
while (rb->get_action(CONTEXT_STD, 1) == ACTION_NONE)
@ -2645,7 +2645,7 @@ void error_wait(const char *message)
Main function that also contain the main plasma
algorithm.
*/
int main(void)
static int main(void)
{
int ret;

View file

@ -8,6 +8,7 @@
#include "sound.h"
#include "rtc-gb.h"
#include "pcm.h"
#include "emu.h"
/*
* emu_reset is called to initialize the state of the emulated

View file

@ -6,6 +6,7 @@
#include "regs.h"
#include "lcd-gb.h"
#include "fb.h"
#include "lcdc.h"
#define C (cpu.lcdc)

View file

@ -7,6 +7,7 @@
#include "rtc-gb.h"
#include "save.h"
#include "sound.h"
#include "loader.h"
/* From http://www.semis.demon.co.uk/Gameboy/Gbspec.txt (4/17/2007)
* Cartridge type:

View file

@ -9,6 +9,7 @@
#include "rtc-gb.h"
#include "mem.h"
#include "sound.h"
#include "save.h"
#ifdef ROCKBOX_LITTLE_ENDIAN
#define LIL(x) (x)