Remove more tabs
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24550 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
bd0b7363ca
commit
4d5e88245a
18 changed files with 6267 additions and 6267 deletions
|
@ -147,45 +147,45 @@ next_track:
|
||||||
/* Soul Calibur 2 style (type 03) */
|
/* Soul Calibur 2 style (type 03) */
|
||||||
DEBUGF("ADX: type 03 found\n");
|
DEBUGF("ADX: type 03 found\n");
|
||||||
/* check if header is too small for loop data */
|
/* check if header is too small for loop data */
|
||||||
if (chanstart-6 < 0x2c) looping=0;
|
if (chanstart-6 < 0x2c) looping=0;
|
||||||
else {
|
else {
|
||||||
looping = (buf[0x18]) ||
|
looping = (buf[0x18]) ||
|
||||||
(buf[0x19]) ||
|
(buf[0x19]) ||
|
||||||
(buf[0x1a]) ||
|
(buf[0x1a]) ||
|
||||||
(buf[0x1b]);
|
(buf[0x1b]);
|
||||||
end_adr = (buf[0x28]<<24) |
|
end_adr = (buf[0x28]<<24) |
|
||||||
(buf[0x29]<<16) |
|
(buf[0x29]<<16) |
|
||||||
(buf[0x2a]<<8) |
|
(buf[0x2a]<<8) |
|
||||||
(buf[0x2b]);
|
(buf[0x2b]);
|
||||||
|
|
||||||
start_adr = (
|
start_adr = (
|
||||||
(buf[0x1c]<<24) |
|
(buf[0x1c]<<24) |
|
||||||
(buf[0x1d]<<16) |
|
(buf[0x1d]<<16) |
|
||||||
(buf[0x1e]<<8) |
|
(buf[0x1e]<<8) |
|
||||||
(buf[0x1f])
|
(buf[0x1f])
|
||||||
)/32*channels*18+chanstart;
|
)/32*channels*18+chanstart;
|
||||||
}
|
}
|
||||||
} else if (!memcmp(buf+0x10,"\x01\xF4\x04\x00",4)) {
|
} else if (!memcmp(buf+0x10,"\x01\xF4\x04\x00",4)) {
|
||||||
/* Standard (type 04) */
|
/* Standard (type 04) */
|
||||||
DEBUGF("ADX: type 04 found\n");
|
DEBUGF("ADX: type 04 found\n");
|
||||||
/* check if header is too small for loop data */
|
/* check if header is too small for loop data */
|
||||||
if (chanstart-6 < 0x38) looping=0;
|
if (chanstart-6 < 0x38) looping=0;
|
||||||
else {
|
else {
|
||||||
looping = (buf[0x24]) ||
|
looping = (buf[0x24]) ||
|
||||||
(buf[0x25]) ||
|
(buf[0x25]) ||
|
||||||
(buf[0x26]) ||
|
(buf[0x26]) ||
|
||||||
(buf[0x27]);
|
(buf[0x27]);
|
||||||
end_adr = (buf[0x34]<<24) |
|
end_adr = (buf[0x34]<<24) |
|
||||||
(buf[0x35]<<16) |
|
(buf[0x35]<<16) |
|
||||||
(buf[0x36]<<8) |
|
(buf[0x36]<<8) |
|
||||||
buf[0x37];
|
buf[0x37];
|
||||||
start_adr = (
|
start_adr = (
|
||||||
(buf[0x28]<<24) |
|
(buf[0x28]<<24) |
|
||||||
(buf[0x29]<<16) |
|
(buf[0x29]<<16) |
|
||||||
(buf[0x2a]<<8) |
|
(buf[0x2a]<<8) |
|
||||||
(buf[0x2b])
|
(buf[0x2b])
|
||||||
)/32*channels*18+chanstart;
|
)/32*channels*18+chanstart;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
DEBUGF("ADX: error, couldn't determine ADX type\n");
|
DEBUGF("ADX: error, couldn't determine ADX type\n");
|
||||||
return CODEC_ERROR;
|
return CODEC_ERROR;
|
||||||
|
@ -305,10 +305,10 @@ next_track:
|
||||||
d = (buf[i] >> 4) & 15;
|
d = (buf[i] >> 4) & 15;
|
||||||
if (d & 8) d-= 16;
|
if (d & 8) d-= 16;
|
||||||
ch1_0 = d*scale + ((coef1*ch1_1 + coef2*ch1_2) >> 12);
|
ch1_0 = d*scale + ((coef1*ch1_1 + coef2*ch1_2) >> 12);
|
||||||
if (ch1_0 > 32767) ch1_0 = 32767;
|
if (ch1_0 > 32767) ch1_0 = 32767;
|
||||||
else if (ch1_0 < -32768) ch1_0 = -32768;
|
else if (ch1_0 < -32768) ch1_0 = -32768;
|
||||||
samples[sampleswritten] = ch1_0;
|
samples[sampleswritten] = ch1_0;
|
||||||
sampleswritten+=channels;
|
sampleswritten+=channels;
|
||||||
ch1_2 = ch1_1; ch1_1 = ch1_0;
|
ch1_2 = ch1_1; ch1_1 = ch1_0;
|
||||||
|
|
||||||
d = buf[i] & 15;
|
d = buf[i] & 15;
|
||||||
|
@ -316,9 +316,9 @@ next_track:
|
||||||
ch1_0 = d*scale + ((coef1*ch1_1 + coef2*ch1_2) >> 12);
|
ch1_0 = d*scale + ((coef1*ch1_1 + coef2*ch1_2) >> 12);
|
||||||
if (ch1_0 > 32767) ch1_0 = 32767;
|
if (ch1_0 > 32767) ch1_0 = 32767;
|
||||||
else if (ch1_0 < -32768) ch1_0 = -32768;
|
else if (ch1_0 < -32768) ch1_0 = -32768;
|
||||||
samples[sampleswritten] = ch1_0;
|
samples[sampleswritten] = ch1_0;
|
||||||
sampleswritten+=channels;
|
sampleswritten+=channels;
|
||||||
ch1_2 = ch1_1; ch1_1 = ch1_0;
|
ch1_2 = ch1_1; ch1_1 = ch1_0;
|
||||||
}
|
}
|
||||||
bufoff+=18;
|
bufoff+=18;
|
||||||
ci->advance_buffer(18);
|
ci->advance_buffer(18);
|
||||||
|
@ -345,10 +345,10 @@ next_track:
|
||||||
d = (buf[i] >> 4) & 15;
|
d = (buf[i] >> 4) & 15;
|
||||||
if (d & 8) d-= 16;
|
if (d & 8) d-= 16;
|
||||||
ch2_0 = d*scale + ((coef1*ch2_1 + coef2*ch2_2) >> 12);
|
ch2_0 = d*scale + ((coef1*ch2_1 + coef2*ch2_2) >> 12);
|
||||||
if (ch2_0 > 32767) ch2_0 = 32767;
|
if (ch2_0 > 32767) ch2_0 = 32767;
|
||||||
else if (ch2_0 < -32768) ch2_0 = -32768;
|
else if (ch2_0 < -32768) ch2_0 = -32768;
|
||||||
samples[sampleswritten] = ch2_0;
|
samples[sampleswritten] = ch2_0;
|
||||||
sampleswritten+=2;
|
sampleswritten+=2;
|
||||||
ch2_2 = ch2_1; ch2_1 = ch2_0;
|
ch2_2 = ch2_1; ch2_1 = ch2_0;
|
||||||
|
|
||||||
d = buf[i] & 15;
|
d = buf[i] & 15;
|
||||||
|
@ -356,9 +356,9 @@ next_track:
|
||||||
ch2_0 = d*scale + ((coef1*ch2_1 + coef2*ch2_2) >> 12);
|
ch2_0 = d*scale + ((coef1*ch2_1 + coef2*ch2_2) >> 12);
|
||||||
if (ch2_0 > 32767) ch2_0 = 32767;
|
if (ch2_0 > 32767) ch2_0 = 32767;
|
||||||
else if (ch2_0 < -32768) ch2_0 = -32768;
|
else if (ch2_0 < -32768) ch2_0 = -32768;
|
||||||
samples[sampleswritten] = ch2_0;
|
samples[sampleswritten] = ch2_0;
|
||||||
sampleswritten+=2;
|
sampleswritten+=2;
|
||||||
ch2_2 = ch2_1; ch2_1 = ch2_0;
|
ch2_2 = ch2_1; ch2_1 = ch2_0;
|
||||||
}
|
}
|
||||||
bufoff+=18;
|
bufoff+=18;
|
||||||
ci->advance_buffer(18);
|
ci->advance_buffer(18);
|
||||||
|
|
|
@ -278,12 +278,12 @@ static void mad_synth_thread_quit(void)
|
||||||
#else
|
#else
|
||||||
static inline void mad_synth_thread_ready(void)
|
static inline void mad_synth_thread_ready(void)
|
||||||
{
|
{
|
||||||
mad_synth_frame(&synth, &frame);
|
mad_synth_frame(&synth, &frame);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline bool mad_synth_thread_create(void)
|
static inline bool mad_synth_thread_create(void)
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void mad_synth_thread_quit(void)
|
static inline void mad_synth_thread_quit(void)
|
||||||
|
|
|
@ -179,7 +179,7 @@ unsigned char memory[65536];
|
||||||
/* ----------------------------------------- Variables for sample stuff */
|
/* ----------------------------------------- Variables for sample stuff */
|
||||||
static int sample_active IDATA_ATTR;
|
static int sample_active IDATA_ATTR;
|
||||||
static int sample_position, sample_start, sample_end, sample_repeat_start IDATA_ATTR;
|
static int sample_position, sample_start, sample_end, sample_repeat_start IDATA_ATTR;
|
||||||
static int fracPos IDATA_ATTR; /* Fractal position of sample */
|
static int fracPos IDATA_ATTR; /* Fractal position of sample */
|
||||||
static int sample_period IDATA_ATTR;
|
static int sample_period IDATA_ATTR;
|
||||||
static int sample_repeats IDATA_ATTR;
|
static int sample_repeats IDATA_ATTR;
|
||||||
static int sample_order IDATA_ATTR;
|
static int sample_order IDATA_ATTR;
|
||||||
|
@ -287,9 +287,9 @@ static inline int GenerateDigi(int sIn)
|
||||||
|
|
||||||
last_sample = sample;
|
last_sample = sample;
|
||||||
|
|
||||||
// N<>hstes Samples holen
|
// N<>hstes Samples holen
|
||||||
if (sample_order == 0) {
|
if (sample_order == 0) {
|
||||||
sample_nibble++; // Nähstes Sample-Nibble
|
sample_nibble++; // Nähstes Sample-Nibble
|
||||||
if (sample_nibble==2) {
|
if (sample_nibble==2) {
|
||||||
sample_nibble = 0;
|
sample_nibble = 0;
|
||||||
sample_position++;
|
sample_position++;
|
||||||
|
@ -313,7 +313,7 @@ static inline int GenerateDigi(int sIn)
|
||||||
}
|
}
|
||||||
|
|
||||||
sample = memory[sample_position&0xffff];
|
sample = memory[sample_position&0xffff];
|
||||||
if (sample_nibble==1) // Hi-Nibble holen?
|
if (sample_nibble==1) // Hi-Nibble holen?
|
||||||
sample = (sample & 0xf0)>>4;
|
sample = (sample & 0xf0)>>4;
|
||||||
else sample = sample & 0x0f;
|
else sample = sample & 0x0f;
|
||||||
|
|
||||||
|
|
|
@ -163,9 +163,9 @@ next_track:
|
||||||
* get here.
|
* get here.
|
||||||
*/
|
*/
|
||||||
if (!error) {
|
if (!error) {
|
||||||
ogg_free(vf.offsets);
|
ogg_free(vf.offsets);
|
||||||
ogg_free(vf.dataoffsets);
|
ogg_free(vf.dataoffsets);
|
||||||
ogg_free(vf.serialnos);
|
ogg_free(vf.serialnos);
|
||||||
|
|
||||||
vf.offsets = vf_offsets;
|
vf.offsets = vf_offsets;
|
||||||
vf.dataoffsets = &vf_dataoffsets;
|
vf.dataoffsets = &vf_dataoffsets;
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
/* Size of a pixel with 8-bit components. */
|
/* Size of a pixel with 8-bit components. */
|
||||||
const int AD_pix8_size =
|
const int AD_pix8_size =
|
||||||
#ifdef HAVE_LCD_COLOR
|
#ifdef HAVE_LCD_COLOR
|
||||||
sizeof(struct uint8_rgb);
|
sizeof(struct uint8_rgb);
|
||||||
#else
|
#else
|
||||||
1;
|
1;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -88,8 +88,8 @@ static const unsigned short freq_table[3][3] =
|
||||||
|
|
||||||
unsigned long bytes2int(unsigned long b0,
|
unsigned long bytes2int(unsigned long b0,
|
||||||
unsigned long b1,
|
unsigned long b1,
|
||||||
unsigned long b2,
|
unsigned long b2,
|
||||||
unsigned long b3)
|
unsigned long b3)
|
||||||
{
|
{
|
||||||
return (((long)(b0 & 0xFF) << (3*8)) |
|
return (((long)(b0 & 0xFF) << (3*8)) |
|
||||||
((long)(b1 & 0xFF) << (2*8)) |
|
((long)(b1 & 0xFF) << (2*8)) |
|
||||||
|
|
|
@ -2878,7 +2878,7 @@ void audio_init(void)
|
||||||
create_thread(mpeg_thread, mpeg_stack,
|
create_thread(mpeg_thread, mpeg_stack,
|
||||||
sizeof(mpeg_stack), 0, mpeg_thread_name
|
sizeof(mpeg_stack), 0, mpeg_thread_name
|
||||||
IF_PRIO(, PRIORITY_SYSTEM)
|
IF_PRIO(, PRIORITY_SYSTEM)
|
||||||
IF_COP(, CPU));
|
IF_COP(, CPU));
|
||||||
|
|
||||||
memset(trackdata, 0, sizeof(trackdata));
|
memset(trackdata, 0, sizeof(trackdata));
|
||||||
|
|
||||||
|
|
|
@ -253,9 +253,9 @@ enum plugin_status plugin_start(const void* parameter)
|
||||||
return PLUGIN_ERROR;
|
return PLUGIN_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
n = rb->write(fd, buf, 8);
|
n = rb->write(fd, buf, 8);
|
||||||
n = rb->write(fd, hash, sizeof(hash));
|
n = rb->write(fd, hash, sizeof(hash));
|
||||||
n = rb->write(fd, buf + 2, size);
|
n = rb->write(fd, buf + 2, size);
|
||||||
|
|
||||||
rb->close(fd);
|
rb->close(fd);
|
||||||
} else if (memcmp(buf + 1,"nn2x",4)==0) {
|
} else if (memcmp(buf + 1,"nn2x",4)==0) {
|
||||||
|
|
|
@ -75,42 +75,42 @@ static int write_file(void)
|
||||||
buf_ptr = stringbuffer;
|
buf_ptr = stringbuffer;
|
||||||
str_begin = stringbuffer;
|
str_begin = stringbuffer;
|
||||||
do {
|
do {
|
||||||
/* Transform slashes into backslashes */
|
/* Transform slashes into backslashes */
|
||||||
if(*buf_ptr == '/')
|
if(*buf_ptr == '/')
|
||||||
*buf_ptr = '\\';
|
*buf_ptr = '\\';
|
||||||
|
|
||||||
if((*buf_ptr == '\r') || (*buf_ptr == '\n')) {
|
if((*buf_ptr == '\r') || (*buf_ptr == '\n')) {
|
||||||
/* We have no complete string ? It's only a leading \n or \r ? */
|
/* We have no complete string ? It's only a leading \n or \r ? */
|
||||||
if (!str_begin)
|
if (!str_begin)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* Terminate string */
|
/* Terminate string */
|
||||||
*buf_ptr = 0;
|
*buf_ptr = 0;
|
||||||
|
|
||||||
/* Write our new string */
|
/* Write our new string */
|
||||||
rc = rb->write(fd, str_begin, rb->strlen(str_begin));
|
rc = rb->write(fd, str_begin, rb->strlen(str_begin));
|
||||||
if(rc < 0) {
|
if(rc < 0) {
|
||||||
rb->close(fd);
|
rb->close(fd);
|
||||||
return 10 * rc - 2;
|
return 10 * rc - 2;
|
||||||
}
|
}
|
||||||
/* Write CR/LF */
|
/* Write CR/LF */
|
||||||
rc = rb->write(fd, crlf, 2);
|
rc = rb->write(fd, crlf, 2);
|
||||||
if(rc < 0) {
|
if(rc < 0) {
|
||||||
rb->close(fd);
|
rb->close(fd);
|
||||||
return 10 * rc - 3;
|
return 10 * rc - 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Reset until we get a new line */
|
/* Reset until we get a new line */
|
||||||
str_begin = NULL;
|
str_begin = NULL;
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
/* We start a new line here */
|
/* We start a new line here */
|
||||||
if (!str_begin)
|
if (!str_begin)
|
||||||
str_begin = buf_ptr;
|
str_begin = buf_ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Next char, until ... */
|
/* Next char, until ... */
|
||||||
} while(buf_ptr++ < stringbuffer + readsize);
|
} while(buf_ptr++ < stringbuffer + readsize);
|
||||||
|
|
||||||
rb->close(fd);
|
rb->close(fd);
|
||||||
|
|
|
@ -259,26 +259,26 @@ static void matrix_loop(void)
|
||||||
y = 0;
|
y = 0;
|
||||||
firstcoldone = 0;
|
firstcoldone = 0;
|
||||||
while (i <= ROWS) {
|
while (i <= ROWS) {
|
||||||
/* Skip over spaces */
|
/* Skip over spaces */
|
||||||
/* this is whear the characters were disappearing */
|
/* this is whear the characters were disappearing */
|
||||||
/*
|
/*
|
||||||
while (i <= ROWS && (matrix[i][j].val == 129 ||
|
while (i <= ROWS && (matrix[i][j].val == 129 ||
|
||||||
matrix[i][j].val == -1))
|
matrix[i][j].val == -1))
|
||||||
i++;
|
i++;
|
||||||
*/
|
*/
|
||||||
/* A little more random now for spaces */
|
/* A little more random now for spaces */
|
||||||
if (rb->rand() % randomness == 1){
|
if (rb->rand() % randomness == 1){
|
||||||
while (i <= ROWS && (matrix[i][j].val == 129 ||
|
while (i <= ROWS && (matrix[i][j].val == 129 ||
|
||||||
matrix[i][j].val == -1)){
|
matrix[i][j].val == -1)){
|
||||||
i++;
|
i++;
|
||||||
randomness--;
|
randomness--;
|
||||||
if(randomness <=1)
|
if(randomness <=1)
|
||||||
randomness = 6;}
|
randomness = 6;}
|
||||||
}else{
|
}else{
|
||||||
randomness++;
|
randomness++;
|
||||||
if(randomness >6)
|
if(randomness >6)
|
||||||
randomness = 6;
|
randomness = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (i > ROWS)
|
if (i > ROWS)
|
||||||
|
|
|
@ -57,19 +57,19 @@ char ppm_getc(int fd)
|
||||||
{
|
{
|
||||||
char ch;
|
char ch;
|
||||||
|
|
||||||
if (!rb->read(fd, &ch, 1)) {
|
if (!rb->read(fd, &ch, 1)) {
|
||||||
ppm_error("EOF. Read error reading a byte");
|
ppm_error("EOF. Read error reading a byte");
|
||||||
return PLUGIN_ERROR;
|
return PLUGIN_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ch == '#') {
|
if (ch == '#') {
|
||||||
do {
|
do {
|
||||||
if (!rb->read(fd, &ch, 1)) {
|
if (!rb->read(fd, &ch, 1)) {
|
||||||
ppm_error("EOF. Read error reading a byte");
|
ppm_error("EOF. Read error reading a byte");
|
||||||
return PLUGIN_ERROR;
|
return PLUGIN_ERROR;
|
||||||
}
|
}
|
||||||
} while (ch != '\n' && ch != '\r');
|
} while (ch != '\n' && ch != '\r');
|
||||||
}
|
}
|
||||||
return ch;
|
return ch;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -81,7 +81,7 @@ int ppm_getuint(int fd)
|
||||||
|
|
||||||
do {
|
do {
|
||||||
ch = ppm_getc(fd);
|
ch = ppm_getc(fd);
|
||||||
} while (ch == ' ' || ch == '\t' || ch == '\n' || ch == '\r');
|
} while (ch == ' ' || ch == '\t' || ch == '\n' || ch == '\r');
|
||||||
|
|
||||||
if (ch < '0' || ch > '9') {
|
if (ch < '0' || ch > '9') {
|
||||||
ppm_error("Junk (%c) in file where an integer should be.", ch);
|
ppm_error("Junk (%c) in file where an integer should be.", ch);
|
||||||
|
@ -213,7 +213,7 @@ int read_ppm_row(int fd,
|
||||||
int col;
|
int col;
|
||||||
int r, g, b;
|
int r, g, b;
|
||||||
switch (format) {
|
switch (format) {
|
||||||
case PPM_FORMAT:
|
case PPM_FORMAT:
|
||||||
for (col = 0; col < cols; ++col) {
|
for (col = 0; col < cols; ++col) {
|
||||||
r = ppm_getuint(fd);
|
r = ppm_getuint(fd);
|
||||||
g = ppm_getuint(fd);
|
g = ppm_getuint(fd);
|
||||||
|
@ -231,7 +231,7 @@ int read_ppm_row(int fd,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case RPPM_FORMAT:
|
case RPPM_FORMAT:
|
||||||
for (col = 0; col < cols; ++col) {
|
for (col = 0; col < cols; ++col) {
|
||||||
r = ppm_getrawsample(fd, maxval);
|
r = ppm_getrawsample(fd, maxval);
|
||||||
g = ppm_getrawsample(fd, maxval);
|
g = ppm_getrawsample(fd, maxval);
|
||||||
|
@ -246,14 +246,14 @@ int read_ppm_row(int fd,
|
||||||
(255 / maxval) * r,
|
(255 / maxval) * r,
|
||||||
(255 / maxval) * g,
|
(255 / maxval) * g,
|
||||||
(255 / maxval) * b);
|
(255 / maxval) * b);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ppm_error("What?!");
|
ppm_error("What?!");
|
||||||
return PLUGIN_ERROR;
|
return PLUGIN_ERROR;
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int read_ppm(int fd,
|
int read_ppm(int fd,
|
||||||
|
|
|
@ -138,9 +138,9 @@ static int wav2wv(const char *infile)
|
||||||
rb->memcpy (&native_header, &raw_header, sizeof (raw_header));
|
rb->memcpy (&native_header, &raw_header, sizeof (raw_header));
|
||||||
little_endian_to_native (&native_header, WAV_HEADER_FORMAT);
|
little_endian_to_native (&native_header, WAV_HEADER_FORMAT);
|
||||||
|
|
||||||
if (rb->strncmp (native_header.ckID, "RIFF", 4) ||
|
if (rb->strncmp (native_header.ckID, "RIFF", 4) ||
|
||||||
rb->strncmp (native_header.fmt_ckID, "fmt ", 4) ||
|
rb->strncmp (native_header.fmt_ckID, "fmt ", 4) ||
|
||||||
rb->strncmp (native_header.data_ckID, "data", 4) ||
|
rb->strncmp (native_header.data_ckID, "data", 4) ||
|
||||||
native_header.FormatTag != 1 || native_header.BitsPerSample != 16) {
|
native_header.FormatTag != 1 || native_header.BitsPerSample != 16) {
|
||||||
rb->splash(HZ*2, "incompatible wav file!");
|
rb->splash(HZ*2, "incompatible wav file!");
|
||||||
return true;
|
return true;
|
||||||
|
@ -153,7 +153,7 @@ static int wav2wv(const char *infile)
|
||||||
config.bytes_per_sample = 2;
|
config.bytes_per_sample = 2;
|
||||||
config.sample_rate = native_header.SampleRate;
|
config.sample_rate = native_header.SampleRate;
|
||||||
num_chans = config.num_channels = native_header.NumChannels;
|
num_chans = config.num_channels = native_header.NumChannels;
|
||||||
total_samples = native_header.data_ckSize / native_header.BlockAlign;
|
total_samples = native_header.data_ckSize / native_header.BlockAlign;
|
||||||
|
|
||||||
/* config.flags |= CONFIG_HIGH_FLAG; */
|
/* config.flags |= CONFIG_HIGH_FLAG; */
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -140,9 +140,9 @@ static int readwavpeaks(const char *filename)
|
||||||
total_bytes_read += sizeof (header);
|
total_bytes_read += sizeof (header);
|
||||||
little_endian_to_native(&header, WAV_HEADER_FORMAT);
|
little_endian_to_native(&header, WAV_HEADER_FORMAT);
|
||||||
|
|
||||||
if (rb->strncmp(header.chunkid, "RIFF", 4) ||
|
if (rb->strncmp(header.chunkid, "RIFF", 4) ||
|
||||||
rb->strncmp(header.formatchunkid, "fmt ", 4) ||
|
rb->strncmp(header.formatchunkid, "fmt ", 4) ||
|
||||||
rb->strncmp(header.datachunkid, "data", 4) ||
|
rb->strncmp(header.datachunkid, "data", 4) ||
|
||||||
(header.bitspersample != 16) ||
|
(header.bitspersample != 16) ||
|
||||||
header.audioformat != 1)
|
header.audioformat != 1)
|
||||||
{
|
{
|
||||||
|
|
|
@ -4552,7 +4552,7 @@ void tagcache_init(void)
|
||||||
create_thread(tagcache_thread, tagcache_stack,
|
create_thread(tagcache_thread, tagcache_stack,
|
||||||
sizeof(tagcache_stack), 0, tagcache_thread_name
|
sizeof(tagcache_stack), 0, tagcache_thread_name
|
||||||
IF_PRIO(, PRIORITY_BACKGROUND)
|
IF_PRIO(, PRIORITY_BACKGROUND)
|
||||||
IF_COP(, CPU));
|
IF_COP(, CPU));
|
||||||
#else
|
#else
|
||||||
tc_stat.initialized = true;
|
tc_stat.initialized = true;
|
||||||
allocate_tempbuf();
|
allocate_tempbuf();
|
||||||
|
|
26
apps/tree.c
26
apps/tree.c
|
@ -306,9 +306,9 @@ void tree_gui_init(void)
|
||||||
/* drawer function for the GUI_EVENT_REDRAW callback */
|
/* drawer function for the GUI_EVENT_REDRAW callback */
|
||||||
void tree_drawlists(void)
|
void tree_drawlists(void)
|
||||||
{
|
{
|
||||||
/* band-aid to fix the bar/list redrawing properly after leaving a plugin */
|
/* band-aid to fix the bar/list redrawing properly after leaving a plugin */
|
||||||
send_event(GUI_EVENT_THEME_CHANGED, NULL);
|
send_event(GUI_EVENT_THEME_CHANGED, NULL);
|
||||||
/* end bandaid */
|
/* end bandaid */
|
||||||
gui_synclist_draw(&tree_lists);
|
gui_synclist_draw(&tree_lists);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -482,21 +482,21 @@ static int update_dir(void)
|
||||||
/* load tracks from specified directory to resume play */
|
/* load tracks from specified directory to resume play */
|
||||||
void resume_directory(const char *dir)
|
void resume_directory(const char *dir)
|
||||||
{
|
{
|
||||||
int dirfilter = *tc.dirfilter;
|
int dirfilter = *tc.dirfilter;
|
||||||
int ret;
|
int ret;
|
||||||
#ifdef HAVE_TAGCACHE
|
#ifdef HAVE_TAGCACHE
|
||||||
bool id3db = *tc.dirfilter == SHOW_ID3DB;
|
bool id3db = *tc.dirfilter == SHOW_ID3DB;
|
||||||
#endif
|
#endif
|
||||||
/* make sure the dirfilter is sane. The only time it should be possible
|
/* make sure the dirfilter is sane. The only time it should be possible
|
||||||
* thats its not is when resume playlist is called from a plugin
|
* thats its not is when resume playlist is called from a plugin
|
||||||
*/
|
*/
|
||||||
#ifdef HAVE_TAGCACHE
|
#ifdef HAVE_TAGCACHE
|
||||||
if (!id3db)
|
if (!id3db)
|
||||||
#endif
|
#endif
|
||||||
*tc.dirfilter = global_settings.dirfilter;
|
*tc.dirfilter = global_settings.dirfilter;
|
||||||
ret = ft_load(&tc, dir);
|
ret = ft_load(&tc, dir);
|
||||||
*tc.dirfilter = dirfilter;
|
*tc.dirfilter = dirfilter;
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return;
|
return;
|
||||||
lastdir[0] = 0;
|
lastdir[0] = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue