1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2007 Dave Chapman
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
25 /* All swcodec targets have BUTTON_SELECT apart from the H10 and M3 */
27 #if CONFIG_KEYPAD == IRIVER_H10_PAD
28 #define TESTCODEC_EXITBUTTON BUTTON_RIGHT
29 #elif CONFIG_KEYPAD == IAUDIO_M3_PAD
30 #define TESTCODEC_EXITBUTTON BUTTON_RC_PLAY
31 #elif CONFIG_KEYPAD == COWOND2_PAD || CONFIG_KEYPAD == ONDAVX747_PAD
32 #define TESTCODEC_EXITBUTTON BUTTON_POWER
34 #define TESTCODEC_EXITBUTTON BUTTON_SELECT
37 /* Log functions copied from test_disk.c */
39 static int max_line
= 0;
40 static int log_fd
= -1;
41 static char logfilename
[MAX_PATH
];
43 static bool log_init(bool use_logfile
)
47 rb
->lcd_getstringsize("A", NULL
, &h
);
48 max_line
= LCD_HEIGHT
/ h
;
50 rb
->lcd_clear_display();
54 rb
->create_numbered_filename(logfilename
, "/", "test_codec_log_", ".txt",
55 2 IF_CNFN_NUM_(, NULL
));
56 log_fd
= rb
->open(logfilename
, O_RDWR
|O_CREAT
|O_TRUNC
);
63 static void log_text(char *text
, bool advance
)
65 rb
->lcd_puts(0, line
, text
);
69 if (++line
>= max_line
)
72 rb
->fdprintf(log_fd
, "%s\n", text
);
76 static void log_close(void)
92 static void* audiobuf
;
93 static void* codec_mallocbuf
;
94 static size_t audiosize
;
95 static char str
[MAX_PATH
];
97 /* Our local implementation of the codec API */
98 static struct codec_api ci
;
100 struct test_track_info
{
101 struct mp3entry id3
; /* TAG metadata */
102 size_t filesize
; /* File total length */
105 static struct test_track_info track
;
106 static bool taginfo_ready
= true;
108 static volatile unsigned int elapsed
;
109 static volatile bool codec_playing
;
110 static volatile long endtick
;
111 struct wavinfo_t wavinfo
;
113 static unsigned char wav_header
[44] =
115 'R','I','F','F', // 0 - ChunkID
116 0,0,0,0, // 4 - ChunkSize (filesize-8)
117 'W','A','V','E', // 8 - Format
118 'f','m','t',' ', // 12 - SubChunkID
119 16,0,0,0, // 16 - SubChunk1ID // 16 for PCM
120 1,0, // 20 - AudioFormat (1=16-bit)
121 0,0, // 22 - NumChannels
122 0,0,0,0, // 24 - SampleRate in Hz
123 0,0,0,0, // 28 - Byte Rate (SampleRate*NumChannels*(BitsPerSample/8)
124 0,0, // 32 - BlockAlign (== NumChannels * BitsPerSample/8)
125 16,0, // 34 - BitsPerSample
126 'd','a','t','a', // 36 - Subchunk2ID
127 0,0,0,0 // 40 - Subchunk2Size
130 static inline void int2le32(unsigned char* buf
, int32_t x
)
133 buf
[1] = (x
& 0xff00) >> 8;
134 buf
[2] = (x
& 0xff0000) >> 16;
135 buf
[3] = (x
& 0xff000000) >>24;
138 static inline void int2le24(unsigned char* buf
, int32_t x
)
141 buf
[1] = (x
& 0xff00) >> 8;
142 buf
[2] = (x
& 0xff0000) >> 16;
145 static inline void int2le16(unsigned char* buf
, int16_t x
)
148 buf
[1] = (x
& 0xff00) >> 8;
151 void init_wav(char* filename
)
153 wavinfo
.totalsamples
= 0;
155 wavinfo
.fd
= rb
->creat(filename
);
159 /* Write WAV header - we go back and fill in the details at the end */
160 rb
->write(wavinfo
.fd
, wav_header
, sizeof(wav_header
));
165 void close_wav(void) {
166 int filesize
= rb
->filesize(wavinfo
.fd
);
167 int channels
= (wavinfo
.stereomode
== STEREO_MONO
) ? 1 : 2;
168 int bps
= 16; /* TODO */
170 /* We assume 16-bit, Stereo */
172 rb
->lseek(wavinfo
.fd
,0,SEEK_SET
);
174 int2le32(wav_header
+4, filesize
-8); /* ChunkSize */
176 int2le16(wav_header
+22, channels
);
178 int2le32(wav_header
+24, wavinfo
.samplerate
);
180 int2le32(wav_header
+28, wavinfo
.samplerate
* channels
* (bps
/ 8)); /* ByteRate */
182 int2le16(wav_header
+32, channels
* (bps
/ 8));
184 int2le32(wav_header
+40, filesize
- 44); /* Subchunk2Size */
186 rb
->write(wavinfo
.fd
, wav_header
, sizeof(wav_header
));
188 rb
->close(wavinfo
.fd
);
191 /* Returns buffer to malloc array. Only codeclib should need this. */
192 static void* codec_get_buffer(size_t *size
)
194 DEBUGF("codec_get_buffer(%d)\n",(int)size
);
196 return codec_mallocbuf
;
200 static bool pcmbuf_insert_null(const void *ch1
, const void *ch2
, int count
)
202 /* Always successful - just discard data */
207 /* Prevent idle poweroff */
208 rb
->reset_poweroff_timer();
213 /* 64KB should be enough */
214 static unsigned char wavbuffer
[64*1024];
216 static inline int32_t clip_sample(int32_t sample
)
218 if ((int16_t)sample
!= sample
)
219 sample
= 0x7fff ^ (sample
>> 31);
226 static bool pcmbuf_insert_wav(const void *ch1
, const void *ch2
, int count
)
228 const int16_t* data1_16
;
229 const int16_t* data2_16
;
230 const int32_t* data1_32
;
231 const int32_t* data2_32
;
232 unsigned char* p
= wavbuffer
;
233 const int scale
= wavinfo
.sampledepth
- 15;
234 const int dc_bias
= 1 << (scale
- 1);
236 /* Prevent idle poweroff */
237 rb
->reset_poweroff_timer();
239 if (wavinfo
.sampledepth
<= 16) {
243 switch(wavinfo
.stereomode
)
245 case STEREO_INTERLEAVED
:
247 int2le16(p
,*data1_16
++);
249 int2le16(p
,*data1_16
++);
254 case STEREO_NONINTERLEAVED
:
256 int2le16(p
,*data1_16
++);
258 int2le16(p
,*data2_16
++);
266 int2le16(p
,*data1_16
++);
275 switch(wavinfo
.stereomode
)
277 case STEREO_INTERLEAVED
:
279 int2le16(p
, clip_sample((*data1_32
++ + dc_bias
) >> scale
));
281 int2le16(p
, clip_sample((*data1_32
++ + dc_bias
) >> scale
));
286 case STEREO_NONINTERLEAVED
:
288 int2le16(p
, clip_sample((*data1_32
++ + dc_bias
) >> scale
));
290 int2le16(p
, clip_sample((*data2_32
++ + dc_bias
) >> scale
));
298 int2le16(p
, clip_sample((*data1_32
++ + dc_bias
) >> scale
));
305 wavinfo
.totalsamples
+= count
;
306 rb
->write(wavinfo
.fd
, wavbuffer
, p
- wavbuffer
);
312 /* Set song position in WPS (value in ms). */
313 static void set_elapsed(unsigned int value
)
319 /* Read next <size> amount bytes from file buffer to <ptr>.
320 Will return number of bytes read or 0 if end of file. */
321 static size_t read_filebuf(void *ptr
, size_t size
)
323 if (ci
.curpos
> (off_t
)track
.filesize
)
327 /* TODO: Don't read beyond end of buffer */
328 rb
->memcpy(ptr
, audiobuf
+ ci
.curpos
, size
);
335 /* Request pointer to file buffer which can be used to read
336 <realsize> amount of data. <reqsize> tells the buffer system
337 how much data it should try to allocate. If <realsize> is 0,
338 end of file is reached. */
339 static void* request_buffer(size_t *realsize
, size_t reqsize
)
341 *realsize
= MIN(track
.filesize
-ci
.curpos
,reqsize
);
343 return (audiobuf
+ ci
.curpos
);
347 /* Advance file buffer position by <amount> amount of bytes. */
348 static void advance_buffer(size_t amount
)
354 /* Advance file buffer to a pointer location inside file buffer. */
355 static void advance_buffer_loc(void *ptr
)
357 ci
.curpos
= ptr
- audiobuf
;
361 /* Seek file buffer to position <newpos> beginning of file. */
362 static bool seek_buffer(size_t newpos
)
369 /* Codec should call this function when it has done the seeking. */
370 static void seek_complete(void)
375 /* Request file change from file buffer. Returns true is next
376 track is available and changed. If return value is false,
377 codec should exit immediately with PLUGIN_OK status. */
378 static bool request_next_track(void)
380 /* We are only decoding a single track */
385 /* Free the buffer area of the current codec after its loaded */
386 static void discard_codec(void)
392 static void set_offset(size_t value
)
399 /* Configure different codec buffer parameters. */
400 static void configure(int setting
, intptr_t value
)
404 case DSP_SWITCH_FREQUENCY
:
405 case DSP_SET_FREQUENCY
:
406 DEBUGF("samplerate=%d\n",(int)value
);
407 wavinfo
.samplerate
= (int)value
;
410 case DSP_SET_SAMPLE_DEPTH
:
411 DEBUGF("sampledepth = %d\n",(int)value
);
412 wavinfo
.sampledepth
=(int)value
;
415 case DSP_SET_STEREO_MODE
:
416 DEBUGF("Stereo mode = %d\n",(int)value
);
417 wavinfo
.stereomode
=(int)value
;
423 static void init_ci(void)
425 /* --- Our "fake" implementations of the codec API functions. --- */
427 ci
.codec_get_buffer
= codec_get_buffer
;
429 if (wavinfo
.fd
>= 0) {
430 ci
.pcmbuf_insert
= pcmbuf_insert_wav
;
432 ci
.pcmbuf_insert
= pcmbuf_insert_null
;
434 ci
.set_elapsed
= set_elapsed
;
435 ci
.read_filebuf
= read_filebuf
;
436 ci
.request_buffer
= request_buffer
;
437 ci
.advance_buffer
= advance_buffer
;
438 ci
.advance_buffer_loc
= advance_buffer_loc
;
439 ci
.seek_buffer
= seek_buffer
;
440 ci
.seek_complete
= seek_complete
;
441 ci
.request_next_track
= request_next_track
;
442 ci
.discard_codec
= discard_codec
;
443 ci
.set_offset
= set_offset
;
444 ci
.configure
= configure
;
446 /* --- "Core" functions --- */
449 ci
.sleep
= rb
->sleep
;
450 ci
.yield
= rb
->yield
;
452 /* strings and memory */
453 ci
.strcpy
= rb
->strcpy
;
454 ci
.strncpy
= rb
->strncpy
;
455 ci
.strlen
= rb
->strlen
;
456 ci
.strcmp
= rb
->strcmp
;
457 ci
.strcat
= rb
->strcat
;
458 ci
.memset
= rb
->memset
;
459 ci
.memcpy
= rb
->memcpy
;
460 ci
.memmove
= rb
->memmove
;
461 ci
.memcmp
= rb
->memcmp
;
462 ci
.memchr
= rb
->memchr
;
463 ci
.strcasestr
= rb
->strcasestr
;
464 #if defined(DEBUG) || defined(SIMULATOR)
465 ci
.debugf
= rb
->debugf
;
467 #ifdef ROCKBOX_HAS_LOGF
471 ci
.qsort
= rb
->qsort
;
472 ci
.global_settings
= rb
->global_settings
;
475 ci
.profile_thread
= rb
->profile_thread
;
476 ci
.profstop
= rb
->profstop
;
477 ci
.profile_func_enter
= rb
->profile_func_enter
;
478 ci
.profile_func_exit
= rb
->profile_func_exit
;
482 ci
.cpucache_invalidate
= rb
->cpucache_invalidate
;
483 ci
.cpucache_flush
= rb
->cpucache_flush
;
487 ci
.create_thread
= rb
->create_thread
;
488 ci
.thread_thaw
= rb
->thread_thaw
;
489 ci
.thread_wait
= rb
->thread_wait
;
490 ci
.semaphore_init
= rb
->semaphore_init
;
491 ci
.semaphore_wait
= rb
->semaphore_wait
;
492 ci
.semaphore_release
= rb
->semaphore_release
;
496 ci
.__div0
= rb
->__div0
;
500 static void codec_thread(void)
502 const char* codecname
;
505 codecname
= rb
->get_codec_filename(track
.id3
.codectype
);
507 /* Load the codec and start decoding. */
508 res
= rb
->codec_load_file(codecname
,&ci
);
510 /* Signal to the main thread that we are done */
511 endtick
= *rb
->current_tick
;
512 codec_playing
= false;
515 static enum plugin_status
test_track(const char* filename
)
519 enum plugin_status res
= PLUGIN_ERROR
;
523 unsigned long duration
;
526 /* Display filename (excluding any path)*/
527 ch
= rb
->strrchr(filename
, '/');
533 rb
->snprintf(str
,sizeof(str
),"%s",ch
);
536 log_text("Loading...",false);
538 fd
= rb
->open(filename
,O_RDONLY
);
541 log_text("Cannot open file",true);
545 track
.filesize
= rb
->filesize(fd
);
547 /* Clear the id3 struct */
548 rb
->memset(&track
.id3
, 0, sizeof(struct mp3entry
));
550 if (!rb
->get_metadata(&(track
.id3
), fd
, filename
))
552 log_text("Cannot read metadata",true);
556 if (track
.filesize
> audiosize
)
558 log_text("File too large",true);
562 n
= rb
->read(fd
, audiobuf
, track
.filesize
);
564 if (n
!= track
.filesize
)
566 log_text("Read failed.",true);
570 /* Initialise the function pointers in the codec API */
573 /* Prepare the codec struct for playing the whole file */
574 ci
.filesize
= track
.filesize
;
576 ci
.taginfo_ready
= &taginfo_ready
;
578 ci
.stop_codec
= false;
582 starttick
= *rb
->current_tick
;
584 codec_playing
= true;
586 rb
->codec_thread_do_callback(codec_thread
, NULL
);
588 /* Wait for codec thread to die */
589 while (codec_playing
)
592 rb
->snprintf(str
,sizeof(str
),"%d of %d",elapsed
,(int)track
.id3
.length
);
595 ticks
= endtick
- starttick
;
597 /* Be sure it is done */
598 rb
->codec_thread_do_callback(NULL
, NULL
);
604 /* Display benchmark information */
605 rb
->snprintf(str
,sizeof(str
),"Decode time - %d.%02ds",(int)ticks
/100,(int)ticks
%100);
608 duration
= track
.id3
.length
/ 10;
609 rb
->snprintf(str
,sizeof(str
),"File duration - %d.%02ds",(int)duration
/100,(int)duration
%100);
613 speed
= duration
* 10000 / ticks
;
617 rb
->snprintf(str
,sizeof(str
),"%d.%02d%% realtime",(int)speed
/100,(int)speed
%100);
621 /* show effective clockrate in MHz needed for realtime decoding */
624 speed
= CPUFREQ_MAX
/ speed
;
625 rb
->snprintf(str
,sizeof(str
),"%d.%02dMHz needed for realtime",
626 (int)speed
/100,(int)speed
%100);
645 /* plugin entry point */
646 enum plugin_status
plugin_start(const void* parameter
)
648 int result
, selection
= 0;
649 enum plugin_status res
= PLUGIN_OK
;
651 struct dirent
*entry
;
654 char dirpath
[MAX_PATH
];
655 char filename
[MAX_PATH
];
657 if (parameter
== NULL
)
659 rb
->splash(HZ
*2, "No File");
663 codec_mallocbuf
= rb
->plugin_get_audio_buffer(&audiosize
);
664 audiobuf
= SKIPBYTES(codec_mallocbuf
, CODEC_SIZE
);
665 audiosize
-= CODEC_SIZE
;
667 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
670 rb
->lcd_clear_display();
674 menu
, "test_codec", NULL
,
680 rb
->lcd_clear_display();
682 result
=rb
->do_menu(&menu
,&selection
, NULL
, false);
689 } else if (result
==1) {
693 /* Only create a log file when we are testing a folder */
694 if (!log_init(true)) {
695 rb
->splash(HZ
*2, "Cannot create logfile");
699 } else if (result
==2) {
701 init_wav("/test.wav");
702 if (wavinfo
.fd
< 0) {
703 rb
->splash(HZ
*2, "Cannot create /test.wav");
707 } else if (result
== MENU_ATTACHED_USB
) {
708 res
= PLUGIN_USB_CONNECTED
;
710 } else if (result
< 0) {
716 /* Test all files in the same directory as the file selected by the
719 rb
->strncpy(dirpath
,parameter
,sizeof(dirpath
));
720 ch
= rb
->strrchr(dirpath
,'/');
723 DEBUGF("Scanning directory \"%s\"\n",dirpath
);
724 dir
= rb
->opendir(dirpath
);
726 entry
= rb
->readdir(dir
);
728 if (!(entry
->attribute
& ATTR_DIRECTORY
)) {
729 rb
->snprintf(filename
,sizeof(filename
),"%s%s",dirpath
,entry
->d_name
);
730 test_track(filename
);
734 /* Read next entry */
735 entry
= rb
->readdir(dir
);
741 /* Just test the file */
742 res
= test_track(parameter
);
744 /* Close WAV file (if there was one) */
745 if (wavinfo
.fd
>= 0) {
747 log_text("Wrote /test.wav",true);
750 while (rb
->button_get(true) != TESTCODEC_EXITBUTTON
);
756 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
757 rb
->cpu_boost(false);