From 617b67e769661d4841b4fd1ace358b932f9c0378 Mon Sep 17 00:00:00 2001 From: Martin Scarratt Date: Sat, 2 Sep 2006 17:30:30 +0000 Subject: Display bitrate (Q value for Archos), samplerate, channels and recording format (M = MP3) in the statusbar in the recording screen. This is all new info for archos targets and I-river targets now have this info on the remote as well as the main screen git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10856 a1c6a512-1295-4272-9138-f99709370657 --- apps/recorder/icons.c | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) (limited to 'apps/recorder/icons.c') diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c index 9fab6cf71d..fc271e890f 100644 --- a/apps/recorder/icons.c +++ b/apps/recorder/icons.c @@ -31,7 +31,9 @@ const unsigned char bitmap_icons_5x8[][5] = { [Icon_Lock_Main] ={0x78,0x7f,0x49,0x7f,0x78}, /* Lock Main */ - [Icon_Lock_Remote]={0x78,0x7f,0x49,0x7f,0x78} /* Lock Remote */ + [Icon_Lock_Remote]={0x78,0x7f,0x49,0x7f,0x78}, /* Lock Remote */ + [Icon_Stereo]={0x1c, 0x22, 0x1c, 0x22, 0x1c}, /* Stereo recording */ + [Icon_Mono]={0x00, 0x1c, 0x22, 0x1c, 0x00} /* Mono recording */ }; const unsigned char bitmap_icons_6x8[][6] = @@ -75,6 +77,29 @@ const unsigned char bitmap_icons_7x8[][7] = {0x7f,0x04,0x4e,0x5f,0x44,0x38,0x7f} /* Repeat-AB playmode */ }; +const unsigned char bitmap_icons_18x8[][18] = +{ + {0x00, 0x00, 0x00, 0x00, 0x3e, 0x04, 0x08, 0x04, 0x3e, 0x00, 0x00, 0x1c, 0x2a, + 0x12, 0x00, 0x1e, 0x30, 0x10}, /* mp3 64kbps */ + {0x00, 0x00, 0x00, 0x00, 0x3e, 0x04, 0x08, 0x04, 0x3e, 0x00, 0x00, 0x04, 0x0a, + 0x3e, 0x00, 0x1c, 0x2a, 0x12}, /* mp3 96kbps */ + {0x00, 0x00, 0x3e, 0x04, 0x08, 0x04, 0x3e, 0x00, 0x00, 0x3e, 0x00, 0x32, 0x2a, + 0x24, 0x00, 0x14, 0x2a, 0x14}, /* mp3 128kbps */ + {0x00, 0x00, 0x3e, 0x04, 0x08, 0x04, 0x3e, 0x00, 0x00, 0x3e, 0x00, 0x1c, 0x2a, + 0x12, 0x00, 0x1c, 0x22, 0x1c}, /* mp3 160kbps */ + {0x00, 0x00, 0x3e, 0x04, 0x08, 0x04, 0x3e, 0x00, 0x00, 0x3e, 0x00, 0x04, 0x0a, + 0x3e, 0x00, 0x32, 0x2a, 0x24}, /* mp3 192kbps */ + {0x3e, 0x04, 0x08, 0x04, 0x3e, 0x00, 0x00, 0x32, 0x2a, 0x24, 0x00, 0x32, 0x2a, + 0x24, 0x00, 0x1e, 0x30, 0x10}, /* mp3 224kbps */ + {0x3e, 0x04, 0x08, 0x04, 0x3e, 0x00, 0x00, 0x22, 0x2a, 0x14, 0x00, 0x32, 0x2a, + 0x24, 0x00, 0x1c, 0x22, 0x1c}, /* mp3 320kbps */ + {0x00, 0x00, 0x00, 0x00, 0x1e, 0x20, 0x18, 0x20, 0x1e, 0x00, 0x1e, 0x20, 0x18, + 0x06, 0x00, 0x00, 0x00, 0x00}, /* wv */ + {0x00, 0x1e, 0x20, 0x18, 0x20, 0x1e, 0x00, 0x3c, 0x12, 0x12, 0x3c, 0x00, 0x1e, + 0x20, 0x18, 0x06, 0x00, 0x00} /* wav */ +}; + + /* Disk/MMC activity */ const unsigned char bitmap_icon_disk[12] = #ifdef HAVE_MMC -- cgit v1.2.3