New plugin: wavview. Shows info about a wav file and allows you to look at the complete waveform, zoom and pan. Only tested in sims and on h3x0. First version so has room for improvements.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13087 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d2a23eee50
commit
09877aa4a8
3 changed files with 489 additions and 10 deletions
|
@ -36,6 +36,7 @@ flipit.c
|
|||
#ifdef HAVE_LCD_BITMAP /* Not for the Player */
|
||||
mazezam.c
|
||||
text_editor.c
|
||||
wavview.c
|
||||
|
||||
/* Plugins needing the grayscale lib on low-depth LCDs */
|
||||
fire.c
|
||||
|
|
|
@ -9,18 +9,19 @@ ucl,viewers/rockbox_flash,2A 7F 41 41 7F 2A
|
|||
rvf,viewers/video,5D 7F 5D 7F 5D 7F
|
||||
mp3,viewers/vbrfix,10 08 58 38 04 02
|
||||
m3u,viewers/search,00 00 00 00 00 00
|
||||
txt,viewers/sort, 00 00 00 00 00 00
|
||||
gb,viewers/rockboy, 0C 2A 59 7A 2E 0C
|
||||
gbc,viewers/rockboy, 0C 2A 59 7A 2E 0C
|
||||
txt,viewers/sort,00 00 00 00 00 00
|
||||
gb,viewers/rockboy,0C 2A 59 7A 2E 0C
|
||||
gbc,viewers/rockboy,0C 2A 59 7A 2E 0C
|
||||
m3u,viewers/iriverify,00 00 00 00 00 00
|
||||
mid,viewers/midiplay, 20 70 70 3F 00 00
|
||||
rmi,viewers/midiplay, 20 70 70 3F 00 00
|
||||
rsp,viewers/searchengine, 0e 11 11 31 7e 60
|
||||
ss,rocks/sudoku, 55 55 55 55 55 55
|
||||
wav,viewers/wav2wv, 00 00 00 00 00 00
|
||||
wav,viewers/mp3_encoder, 00 00 00 00 00 00
|
||||
mid,viewers/midiplay,20 70 70 3F 00 00
|
||||
rmi,viewers/midiplay,20 70 70 3F 00 00
|
||||
rsp,viewers/searchengine,0e 11 11 31 7e 60
|
||||
ss,rocks/sudoku,55 55 55 55 55 55
|
||||
wav,viewers/wav2wv,00 00 00 00 00 00
|
||||
wav,viewers/mp3_encoder,00 00 00 00 00 00
|
||||
wav,viewers/wavplay,60 7F 05 35 3F 00
|
||||
bmp,rocks/rockpaint, 01 10 01 10 01 10
|
||||
wav,viewers/wavview,18 7E 3C FF 7E 18
|
||||
bmp,rocks/rockpaint,01 10 01 10 01 10
|
||||
mpg,viewers/mpegplayer,5D 7F 5D 7F 5D 7F
|
||||
iriver,viewers/iriver_flash,2A 7F 41 41 7F 2A
|
||||
tap,viewers/zxbox,66 52 4A 66 52 4A
|
||||
|
|
477
apps/plugins/wavview.c
Normal file
477
apps/plugins/wavview.c
Normal file
|
@ -0,0 +1,477 @@
|
|||
/***************************************************************************
|
||||
* __________ __ ___.
|
||||
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
* \/ \/ \/ \/ \/
|
||||
* $Id$
|
||||
*
|
||||
* Copyright (C) 2007 Peter D'Hoye
|
||||
*
|
||||
* All files in this archive are subject to the GNU General Public License.
|
||||
* See the file COPYING in the source tree root for full license agreement.
|
||||
*
|
||||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
* KIND, either express or implied.
|
||||
*
|
||||
****************************************************************************/
|
||||
#include "plugin.h"
|
||||
|
||||
#include <codecs/libwavpack/wavpack.h> /* for little_endian_to_native() */
|
||||
|
||||
PLUGIN_HEADER
|
||||
|
||||
static struct plugin_api* rb;
|
||||
|
||||
// temp byte buffer
|
||||
uint8_t samples[10 * 1024]; /* read 10KB at the time */
|
||||
|
||||
/* +++ required by wavpack */
|
||||
void *memset(void *s, int c, size_t n)
|
||||
{
|
||||
return(rb->memset(s,c,n));
|
||||
}
|
||||
|
||||
void *memcpy(void *dest, const void *src, size_t n)
|
||||
{
|
||||
return(rb->memcpy(dest,src,n));
|
||||
}
|
||||
/* --- required by wavpack */
|
||||
|
||||
static struct wav_header
|
||||
{
|
||||
int8_t chunkid[4];
|
||||
int32_t chunksize;
|
||||
int8_t format[4];
|
||||
int8_t formatchunkid[4];
|
||||
int32_t formatchunksize;
|
||||
int16_t audioformat;
|
||||
int16_t numchannels;
|
||||
uint32_t samplerate;
|
||||
uint32_t byterate;
|
||||
uint16_t blockalign;
|
||||
uint16_t bitspersample;
|
||||
int8_t datachunkid[4];
|
||||
int32_t datachunksize;
|
||||
} header;
|
||||
|
||||
#define WAV_HEADER_FORMAT "4L44LSSLLSS4L"
|
||||
|
||||
struct peakstruct
|
||||
{
|
||||
int lmin;
|
||||
int lmax;
|
||||
int rmin;
|
||||
int rmax;
|
||||
};
|
||||
|
||||
/* TO DO: limit used LCD height, so the waveform isn't streched vertically? */
|
||||
|
||||
#define LEFTZERO (LCD_HEIGHT / 4)
|
||||
#define RIGHTZERO (3 * (LCD_HEIGHT / 4))
|
||||
#define YSCALE ((0x8000 / (LCD_HEIGHT / 4)) + 1)
|
||||
|
||||
/* global vars */
|
||||
static char *audiobuf;
|
||||
static int audiobuflen;
|
||||
static uint32_t mempeakcount = 0;
|
||||
static uint32_t filepeakcount = 0;
|
||||
static uint32_t fppmp = 0; /* file peaks per mem peaks */
|
||||
static uint32_t zoomlevel = 1;
|
||||
static uint32_t leftmargin = 0;
|
||||
static uint32_t center = 0;
|
||||
static uint32_t ppp = 1;
|
||||
|
||||
/* helper function copied from libwavpack bits.c */
|
||||
void little_endian_to_native (void *data, char *format)
|
||||
{
|
||||
uchar *cp = (uchar *) data;
|
||||
|
||||
while (*format) {
|
||||
switch (*format) {
|
||||
case 'L':
|
||||
*(long *)cp = letoh32(*(long *)cp);
|
||||
cp += 4;
|
||||
break;
|
||||
|
||||
case 'S':
|
||||
*(short *)cp = letoh16(*(short *)cp);
|
||||
cp += 2;
|
||||
break;
|
||||
|
||||
default:
|
||||
if (*format >= '0' && *format <= '9')
|
||||
cp += *format - '0';
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
format++;
|
||||
}
|
||||
}
|
||||
/* --- */
|
||||
|
||||
/* read WAV file
|
||||
display some info about it
|
||||
store peak info in aufiobuf for display routine */
|
||||
static int readwavpeaks(char *filename)
|
||||
{
|
||||
int file;
|
||||
uint32_t total_bytes_read = 0;
|
||||
char tstr[128];
|
||||
int hours;
|
||||
int minutes;
|
||||
int seconds;
|
||||
uint32_t bytes_read;
|
||||
uint32_t peakcount = 0;
|
||||
uint16_t* sampleshort = NULL;
|
||||
int16_t sampleval;
|
||||
struct peakstruct* peak = NULL;
|
||||
|
||||
if(rb->strcasecmp (filename + rb->strlen (filename) - 3, "wav"))
|
||||
{
|
||||
rb->splash(HZ*2, "Only for wav files!");
|
||||
return 1;
|
||||
}
|
||||
|
||||
file = rb->open(filename, O_RDONLY);
|
||||
|
||||
if(file < 0)
|
||||
{
|
||||
rb->splash(HZ*2, "Could not open file!");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if(rb->read(file, &header, sizeof (header)) != sizeof (header))
|
||||
{
|
||||
rb->splash(HZ*2, "Could not read file!");
|
||||
return 1;
|
||||
}
|
||||
|
||||
total_bytes_read += sizeof (header);
|
||||
little_endian_to_native(&header, WAV_HEADER_FORMAT);
|
||||
|
||||
if (rb->strncmp(header.chunkid, "RIFF", 4) ||
|
||||
rb->strncmp(header.formatchunkid, "fmt ", 4) ||
|
||||
rb->strncmp(header.datachunkid, "data", 4) ||
|
||||
(header.bitspersample != 16) ||
|
||||
header.audioformat != 1)
|
||||
{
|
||||
rb->splash(HZ*2, "Incompatible wav file!");
|
||||
return true;
|
||||
}
|
||||
|
||||
rb->lcd_clear_display();
|
||||
rb->lcd_puts(0, 0, "Viewing file:");
|
||||
rb->lcd_puts_scroll(0, 1, (unsigned char *)filename);
|
||||
rb->lcd_update();
|
||||
|
||||
rb->snprintf(tstr,127, "Channels: %s",
|
||||
header.numchannels == 1 ? "mono" : "stereo");
|
||||
rb->lcd_puts(0, 2, tstr);
|
||||
|
||||
rb->snprintf(tstr,127, "Bits/sample: %d", header.bitspersample);
|
||||
rb->lcd_puts(0, 3, tstr);
|
||||
|
||||
rb->snprintf(tstr,127, "Samplerate: %ld Hz", header.samplerate);
|
||||
rb->lcd_puts(0, 4, tstr);
|
||||
|
||||
seconds = header.datachunksize / header.byterate;
|
||||
hours = seconds / 3600;
|
||||
seconds -= hours * 3600;
|
||||
minutes = seconds / 60;
|
||||
seconds -= minutes * 60;
|
||||
rb->snprintf(tstr,127, "Length (hh:mm:ss): %02d:%02d:%02d", hours,
|
||||
minutes,
|
||||
seconds);
|
||||
rb->lcd_puts(0, 5, tstr);
|
||||
|
||||
rb->lcd_puts(0, 6, "Searching for peaks... ");
|
||||
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
rb->lcd_update();
|
||||
#endif
|
||||
|
||||
/* calculate room for peaks */
|
||||
filepeakcount = header.datachunksize /
|
||||
(header.numchannels * (header.bitspersample / 8));
|
||||
mempeakcount = audiobuflen / sizeof(struct peakstruct);
|
||||
fppmp = (filepeakcount / mempeakcount) + 1;
|
||||
peak = (struct peakstruct*)audiobuf;
|
||||
|
||||
mempeakcount = 0;
|
||||
peak->lmin = INT_MAX;
|
||||
peak->lmax = INT_MIN;
|
||||
peak->rmin = INT_MAX;
|
||||
peak->rmax = INT_MIN;
|
||||
while(total_bytes_read < (header.datachunksize +
|
||||
sizeof(struct wav_header)))
|
||||
{
|
||||
bytes_read = rb->read(file, &samples, sizeof(samples));
|
||||
total_bytes_read += bytes_read;
|
||||
|
||||
if(0 == bytes_read)
|
||||
{
|
||||
rb->splash(HZ*2, "File read error!");
|
||||
return 1;
|
||||
}
|
||||
if(((bytes_read/4)*4) != bytes_read)
|
||||
{
|
||||
rb->splash(HZ*2, "bytes_read/*4 err: %ld",bytes_read);
|
||||
return 1;
|
||||
}
|
||||
|
||||
sampleshort = (int16_t*)samples;
|
||||
|
||||
while(bytes_read)
|
||||
{
|
||||
#ifdef ROCKBOX_BIG_ENDIAN
|
||||
sampleval = (*sampleshort) >> 8;
|
||||
sampleval |= (*sampleshort) << 8;
|
||||
sampleshort++;
|
||||
#else
|
||||
sampleval = *(sampleshort++);
|
||||
#endif
|
||||
|
||||
if(sampleval < peak->lmin)
|
||||
peak->lmin = sampleval;
|
||||
else if (sampleval > peak->lmax)
|
||||
peak->lmax = sampleval;
|
||||
|
||||
#ifdef ROCKBOX_BIG_ENDIAN
|
||||
sampleval = (*sampleshort) >> 8;
|
||||
sampleval |= (*sampleshort) << 8;
|
||||
sampleshort++;
|
||||
#else
|
||||
sampleval = *(sampleshort++);
|
||||
#endif
|
||||
|
||||
if(sampleval < peak->rmin)
|
||||
peak->rmin = sampleval;
|
||||
else if (sampleval > peak->rmax)
|
||||
peak->rmax = sampleval;
|
||||
|
||||
bytes_read -= 4;
|
||||
peakcount++;
|
||||
if(0 == (peakcount % fppmp))
|
||||
{
|
||||
/* extra min/max check */
|
||||
if(peak->lmin > peak->lmax)
|
||||
{
|
||||
if(peak->lmin == INT_MAX)
|
||||
peak->lmin = peak->lmax;
|
||||
if(peak->lmax == INT_MIN)
|
||||
peak->lmax = peak->lmin;
|
||||
}
|
||||
if(peak->rmin > peak->rmax)
|
||||
{
|
||||
if(peak->rmin == INT_MAX)
|
||||
peak->rmin = peak->rmax;
|
||||
if(peak->rmax == INT_MIN)
|
||||
peak->rmax = peak->rmin;
|
||||
}
|
||||
peak++;
|
||||
mempeakcount++;
|
||||
peak->lmin = INT_MAX;
|
||||
peak->lmax = INT_MIN;
|
||||
peak->rmin = INT_MAX;
|
||||
peak->rmax = INT_MIN;
|
||||
}
|
||||
}
|
||||
|
||||
/* update progress */
|
||||
rb->snprintf(tstr,127, "Searching for peaks... %ld%%",
|
||||
total_bytes_read / ((header.datachunksize +
|
||||
sizeof(struct wav_header)) / 100));
|
||||
rb->lcd_puts(0, 6, tstr);
|
||||
rb->lcd_update();
|
||||
}
|
||||
|
||||
rb->lcd_puts(0, 6, "Searching for peaks... done");
|
||||
rb->lcd_update();
|
||||
|
||||
rb->close (file);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int displaypeaks(void)
|
||||
{
|
||||
int x = 0;
|
||||
int lymin = INT_MAX;
|
||||
int lymax = INT_MIN;
|
||||
int rymin = INT_MAX;
|
||||
int rymax = INT_MIN;
|
||||
unsigned int peakcount = 0;
|
||||
struct peakstruct* peak = (struct peakstruct*)audiobuf + leftmargin;
|
||||
|
||||
#if LCD_DEPTH > 1
|
||||
unsigned org_forecolor = rb->lcd_get_foreground();
|
||||
rb->lcd_set_foreground(LCD_LIGHTGRAY);
|
||||
#endif
|
||||
|
||||
if(!zoomlevel) zoomlevel = 1;
|
||||
ppp = (mempeakcount / LCD_WIDTH) / zoomlevel; /* peaks per pixel */
|
||||
|
||||
rb->lcd_clear_display();
|
||||
|
||||
rb->lcd_drawline(0, LEFTZERO - (0x8000 / YSCALE), LCD_WIDTH-1,
|
||||
LEFTZERO - (0x8000 / YSCALE));
|
||||
rb->lcd_drawline(0, LEFTZERO, LCD_WIDTH-1, LEFTZERO);
|
||||
rb->lcd_drawline(0, LEFTZERO + (0x8000 / YSCALE), LCD_WIDTH-1,
|
||||
LEFTZERO + (0x8000 / YSCALE));
|
||||
rb->lcd_drawline(0, RIGHTZERO - (0x8000 / YSCALE), LCD_WIDTH-1,
|
||||
RIGHTZERO - (0x8000 / YSCALE));
|
||||
rb->lcd_drawline(0, RIGHTZERO, LCD_WIDTH-1, RIGHTZERO);
|
||||
rb->lcd_drawline(0, RIGHTZERO + (0x8000 / YSCALE), LCD_WIDTH-1,
|
||||
RIGHTZERO + (0x8000 / YSCALE));
|
||||
|
||||
#if LCD_DEPTH > 1
|
||||
rb->lcd_set_foreground(LCD_BLACK);
|
||||
#endif
|
||||
|
||||
/* draw zoombar */
|
||||
rb->lcd_drawline(leftmargin / (mempeakcount / LCD_WIDTH), LCD_HEIGHT / 2,
|
||||
(leftmargin / (mempeakcount / LCD_WIDTH)) +
|
||||
(LCD_WIDTH / zoomlevel),
|
||||
LCD_HEIGHT / 2);
|
||||
|
||||
while((x < LCD_WIDTH) && (peakcount < mempeakcount))
|
||||
{
|
||||
if(peak->lmin < lymin)
|
||||
lymin = peak->lmin;
|
||||
if(peak->lmax > lymax)
|
||||
lymax = peak->lmax;
|
||||
if(peak->rmin < rymin)
|
||||
rymin = peak->rmin;
|
||||
if(peak->rmax > rymax)
|
||||
rymax = peak->rmax;
|
||||
peak++;
|
||||
if(0 == (peakcount % ppp))
|
||||
{
|
||||
/* drawing time */
|
||||
rb->lcd_drawline(x, LEFTZERO - (lymax / YSCALE), x,
|
||||
LEFTZERO - (lymin / YSCALE));
|
||||
rb->lcd_drawline(x, RIGHTZERO - (rymax / YSCALE), x,
|
||||
RIGHTZERO - (rymin / YSCALE));
|
||||
lymin = INT_MAX;
|
||||
lymax = INT_MIN;
|
||||
rymin = INT_MAX;
|
||||
rymax = INT_MIN;
|
||||
x++;
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
rb->lcd_update();
|
||||
#endif
|
||||
}
|
||||
peakcount++;
|
||||
}
|
||||
|
||||
#if LCD_DEPTH > 1
|
||||
rb->lcd_set_foreground(org_forecolor);
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
enum plugin_status plugin_start(struct plugin_api* api, void *parameter)
|
||||
{
|
||||
unsigned int quit = 0;
|
||||
unsigned int action = 0;
|
||||
unsigned int dodisplay = 1;
|
||||
rb = api;
|
||||
|
||||
if (!parameter)
|
||||
return PLUGIN_ERROR;
|
||||
|
||||
audiobuf = rb->plugin_get_audio_buffer(&audiobuflen);
|
||||
|
||||
if (!audiobuf)
|
||||
{
|
||||
rb->splash(HZ*2, "unable to get audio buffer!");
|
||||
return PLUGIN_ERROR;
|
||||
}
|
||||
|
||||
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||
rb->cpu_boost(true);
|
||||
#endif
|
||||
|
||||
readwavpeaks(parameter); /* read WAV file and create peaks array */
|
||||
|
||||
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||
rb->cpu_boost(false);
|
||||
#endif
|
||||
|
||||
/* press any key to continue */
|
||||
while(ACTION_KBD_ABORT != rb->get_action(CONTEXT_KEYBOARD,TIMEOUT_BLOCK));
|
||||
|
||||
/* start with the overview */
|
||||
zoomlevel = 1;
|
||||
leftmargin = 0;
|
||||
|
||||
while(!quit)
|
||||
{
|
||||
if(!center)
|
||||
center = mempeakcount / 2;
|
||||
if(zoomlevel <= 1)
|
||||
{
|
||||
zoomlevel = 1;
|
||||
leftmargin = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
if(center < (mempeakcount / (zoomlevel * 2)))
|
||||
center = mempeakcount / (zoomlevel * 2);
|
||||
if(center > (((zoomlevel * 2) - 1) * (mempeakcount /
|
||||
(zoomlevel * 2))))
|
||||
center = ((zoomlevel * 2) - 1) * (mempeakcount /
|
||||
(zoomlevel * 2));
|
||||
leftmargin = center - (mempeakcount / (zoomlevel * 2));
|
||||
}
|
||||
|
||||
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||
rb->cpu_boost(true);
|
||||
#endif
|
||||
if(dodisplay)
|
||||
displaypeaks();
|
||||
dodisplay = 1;
|
||||
|
||||
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||
rb->cpu_boost(false);
|
||||
#endif
|
||||
|
||||
action = rb->get_action(CONTEXT_KEYBOARD, TIMEOUT_BLOCK);
|
||||
switch(action)
|
||||
{
|
||||
case ACTION_KBD_UP:
|
||||
/* zoom out */
|
||||
if(zoomlevel > 1)
|
||||
zoomlevel /= 2;
|
||||
rb->splash(HZ/2, "ZOOM: %ldx",zoomlevel);
|
||||
break;
|
||||
case ACTION_KBD_DOWN:
|
||||
if(zoomlevel < (mempeakcount / LCD_WIDTH / 2))
|
||||
zoomlevel *= 2;
|
||||
rb->splash(HZ/2, "ZOOM: %ldx",zoomlevel);
|
||||
break;
|
||||
case ACTION_KBD_LEFT:
|
||||
center -= 10 * (mempeakcount / LCD_WIDTH) / zoomlevel;
|
||||
break;
|
||||
case ACTION_KBD_RIGHT:
|
||||
center += 10 * (mempeakcount / LCD_WIDTH) / zoomlevel;
|
||||
break;
|
||||
case ACTION_KBD_ABORT:
|
||||
quit = 1;
|
||||
break;
|
||||
case ACTION_KBD_SELECT:
|
||||
/* refresh */
|
||||
break;
|
||||
default:
|
||||
/* eat it */
|
||||
dodisplay = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue