1
0
Fork 0
forked from len0rd/rockbox

jpeg,png: fix typo in comments and indentions.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24307 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Teruaki Kawashima 2010-01-21 12:06:02 +00:00
parent 3e89296d6a
commit ccf8e4e8ba
3 changed files with 8 additions and 8 deletions

View file

@ -39,7 +39,7 @@ GREY_INFO_STRUCT
/******************************* Globals ***********************************/
bool slideshow_enabled = false; /* run slideshow */
bool running_slideshow = false; /* loading image because of slideshw */
bool running_slideshow = false; /* loading image because of slideshow */
#ifdef DISK_SPINDOWN
bool immediate_ata_off = false; /* power down disk after loading */
#endif
@ -295,7 +295,7 @@ static int show_menu(void) /* return 1 to quit */
case MIID_RETURN:
break;
case MIID_TOGGLE_SS_MODE:
rb->set_option("Toggle Slideshow", &slideshow_enabled, INT,
rb->set_option("Toggle Slideshow", &slideshow_enabled, BOOL,
slideshow , 2, NULL);
break;
case MIID_CHANGE_SS_MODE:

View file

@ -394,12 +394,12 @@ extern bool immediate_ata_off;
extern bool plug_buf;
#endif
/* functions needed to be implemented in each image decoders. */
/* functions need to be implemented in each image decoders. */
/* return true if ext is supported by the decoder. */
extern bool img_ext(const char *ext);
/* return needed size of buffer to store downscaled image by ds */
extern int img_mem(int ds);
/* load image from filename. set width and height of info properly. alos, set
/* load image from filename. set width and height of info properly. also, set
* buf_size to remaining size of buf after load image. it is used to caluclate
* min downscale. */
extern int load_image(char *filename, struct image_info *info,

View file

@ -146,7 +146,7 @@ static fb_data *disp_buf;
/* my memory pool (from the mp3 buffer) */
static char print[128]; /* use a common snprintf() buffer */
unsigned char *memory, *memory_max;
unsigned char *memory, *memory_max; /* inffast.c needs memory_max */
static size_t memory_size;
static unsigned char *image; /* where we put the content of the file */