summaryrefslogtreecommitdiff
path: root/apps/recorder/bmp.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2009-06-07 21:27:05 +0000
committerJens Arnold <amiconn@rockbox.org>2009-06-07 21:27:05 +0000
commit1d6df54df27cb41c02226678a2c8f9feddd1a1e0 (patch)
tree5fdc6dd98ac0208f5c3351b062063af6914cbefb /apps/recorder/bmp.c
parentc3182ec333982e961d3babfbdb1125fd5bac7fb8 (diff)
downloadrockbox-1d6df54df27cb41c02226678a2c8f9feddd1a1e0.tar.gz
rockbox-1d6df54df27cb41c02226678a2c8f9feddd1a1e0.zip
Convert a number of places in core and plugins to use the BIT_N() macro instead of 1<<n. Speeds up things on SH1, and also reduces core binsize. Most notable speedups: 1 bit lcd driver: drawpixel +20%, drawline + 27%, hline +5%; jpeg viewer: +8% for 1/8 scaling. Other targets are unaffected.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21205 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/bmp.c')
-rw-r--r--apps/recorder/bmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/bmp.c b/apps/recorder/bmp.c
index 1d5d378708..8fcd8ca92e 100644
--- a/apps/recorder/bmp.c
+++ b/apps/recorder/bmp.c
@@ -617,7 +617,7 @@ int read_bmp_fd(int fd,
617 if (depth <= 8) { 617 if (depth <= 8) {
618 numcolors = letoh32(bmph.clr_used); 618 numcolors = letoh32(bmph.clr_used);
619 if (numcolors == 0) 619 if (numcolors == 0)
620 numcolors = 1 << depth; 620 numcolors = BIT_N(depth);
621 } else 621 } else
622 numcolors = (compression == 3) ? 3 : 0; 622 numcolors = (compression == 3) ? 3 : 0;
623 623
@@ -795,7 +795,7 @@ int read_bmp_fd(int fd,
795#ifndef PLUGIN 795#ifndef PLUGIN
796 { 796 {
797 unsigned char *p = bitmap + bm->width * (row >> 3); 797 unsigned char *p = bitmap + bm->width * (row >> 3);
798 unsigned char mask = 1 << (row & 7); 798 unsigned char mask = BIT_N(row & 7);
799 int col; 799 int col;
800 for (col = 0; col < bm->width; col++, p++) 800 for (col = 0; col < bm->width; col++, p++)
801#if !defined(HAVE_LCD_COLOR) && \ 801#if !defined(HAVE_LCD_COLOR) && \