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 == SAMSUNG_YH_PAD
32 #define TESTCODEC_EXITBUTTON BUTTON_PLAY
33 #elif CONFIG_KEYPAD == COWON_D2_PAD || CONFIG_KEYPAD == ONDAVX747_PAD \
34 || CONFIG_KEYPAD == PHILIPS_HDD6330_PAD
35 #define TESTCODEC_EXITBUTTON BUTTON_POWER
36 #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
37 #define TESTCODEC_EXITBUTTON BUTTON_REC
38 #elif CONFIG_KEYPAD == MPIO_HD200_PAD
39 #define TESTCODEC_EXITBUTTON (BUTTON_REC | BUTTON_PLAY)
40 #elif CONFIG_KEYPAD == MPIO_HD300_PAD
41 #define TESTCODEC_EXITBUTTON (BUTTON_REC | BUTTON_REPEAT)
42 #elif defined(HAVE_TOUCHSCREEN)
43 #define TESTCODEC_EXITBUTTON BUTTON_TOPLEFT
45 #define TESTCODEC_EXITBUTTON BUTTON_SELECT
48 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
49 static unsigned int boost
=1;
51 static const struct opt_items boost_settings
[2] = {
58 /* Log functions copied from test_disk.c */
60 static int max_line
= 0;
61 static int log_fd
= -1;
63 static void log_close(void)
69 static bool log_init(bool use_logfile
)
72 char logfilename
[MAX_PATH
];
74 rb
->lcd_getstringsize("A", NULL
, &h
);
75 max_line
= LCD_HEIGHT
/ h
;
77 rb
->lcd_clear_display();
82 rb
->create_numbered_filename(logfilename
, "/", "test_codec_log_", ".txt",
83 2 IF_CNFN_NUM_(, NULL
));
84 log_fd
= rb
->open(logfilename
, O_RDWR
|O_CREAT
|O_TRUNC
, 0666);
91 static void log_text(char *text
, bool advance
)
93 rb
->lcd_puts(0, line
, text
);
97 if (++line
>= max_line
)
100 rb
->fdprintf(log_fd
, "%s\n", text
);
114 static void* audiobuf
;
115 static void* codec_mallocbuf
;
116 static size_t audiosize
;
117 static size_t audiobufsize
;
121 /* Our local implementation of the codec API */
122 static struct codec_api ci
;
124 struct test_track_info
{
125 struct mp3entry id3
; /* TAG metadata */
126 size_t filesize
; /* File total length */
129 static struct test_track_info track
;
130 static bool taginfo_ready
= true;
134 static bool checksum
;
135 static uint32_t crc32
;
137 static volatile unsigned int elapsed
;
138 static volatile bool codec_playing
;
139 static volatile long endtick
;
140 static volatile long rebuffertick
;
141 struct wavinfo_t wavinfo
;
143 static unsigned char wav_header
[44] =
145 'R','I','F','F', // 0 - ChunkID
146 0,0,0,0, // 4 - ChunkSize (filesize-8)
147 'W','A','V','E', // 8 - Format
148 'f','m','t',' ', // 12 - SubChunkID
149 16,0,0,0, // 16 - SubChunk1ID // 16 for PCM
150 1,0, // 20 - AudioFormat (1=16-bit)
151 0,0, // 22 - NumChannels
152 0,0,0,0, // 24 - SampleRate in Hz
153 0,0,0,0, // 28 - Byte Rate (SampleRate*NumChannels*(BitsPerSample/8)
154 0,0, // 32 - BlockAlign (== NumChannels * BitsPerSample/8)
155 16,0, // 34 - BitsPerSample
156 'd','a','t','a', // 36 - Subchunk2ID
157 0,0,0,0 // 40 - Subchunk2Size
160 static inline void int2le32(unsigned char* buf
, int32_t x
)
163 buf
[1] = (x
& 0xff00) >> 8;
164 buf
[2] = (x
& 0xff0000) >> 16;
165 buf
[3] = (x
& 0xff000000) >>24;
168 static inline void int2le24(unsigned char* buf
, int32_t x
)
171 buf
[1] = (x
& 0xff00) >> 8;
172 buf
[2] = (x
& 0xff0000) >> 16;
175 static inline void int2le16(unsigned char* buf
, int16_t x
)
178 buf
[1] = (x
& 0xff00) >> 8;
181 static unsigned char *wavbuffer
;
182 static unsigned char *dspbuffer
;
184 void init_wav(char* filename
)
186 wavinfo
.totalsamples
= 0;
188 wavinfo
.fd
= rb
->creat(filename
, 0666);
192 /* Write WAV header - we go back and fill in the details at the end */
193 rb
->write(wavinfo
.fd
, wav_header
, sizeof(wav_header
));
200 int filesize
= rb
->filesize(wavinfo
.fd
);
201 int channels
= (wavinfo
.stereomode
== STEREO_MONO
) ? 1 : 2;
202 int bps
= 16; /* TODO */
204 /* We assume 16-bit, Stereo */
206 rb
->lseek(wavinfo
.fd
,0,SEEK_SET
);
208 int2le32(wav_header
+4, filesize
-8); /* ChunkSize */
210 int2le16(wav_header
+22, channels
);
212 int2le32(wav_header
+24, wavinfo
.samplerate
);
214 int2le32(wav_header
+28, wavinfo
.samplerate
* channels
* (bps
/ 8)); /* ByteRate */
216 int2le16(wav_header
+32, channels
* (bps
/ 8));
218 int2le32(wav_header
+40, filesize
- 44); /* Subchunk2Size */
220 rb
->write(wavinfo
.fd
, wav_header
, sizeof(wav_header
));
222 rb
->close(wavinfo
.fd
);
225 /* Returns buffer to malloc array. Only codeclib should need this. */
226 static void* codec_get_buffer(size_t *size
)
228 DEBUGF("codec_get_buffer(%"PRIuPTR
")\n",(uintptr_t)size
);
230 return codec_mallocbuf
;
233 static int process_dsp(const void *ch1
, const void *ch2
, int count
)
235 const char *src
[2] = { ch1
, ch2
};
236 int written_count
= 0;
237 char *dest
= dspbuffer
;
241 int out_count
= rb
->dsp_output_count(ci
.dsp
, count
);
243 int inp_count
= rb
->dsp_input_count(ci
.dsp
, out_count
);
248 if (inp_count
> count
)
251 out_count
= rb
->dsp_process(ci
.dsp
, dest
, src
, inp_count
);
256 written_count
+= out_count
;
257 dest
+= out_count
* 4;
262 return written_count
;
265 static inline int32_t clip_sample(int32_t sample
)
267 if ((int16_t)sample
!= sample
)
268 sample
= 0x7fff ^ (sample
>> 31);
274 static void pcmbuf_insert_null(const void *ch1
, const void *ch2
, int count
)
277 process_dsp(ch1
, ch2
, count
);
279 /* Prevent idle poweroff */
280 rb
->reset_poweroff_timer();
284 * Helper function used when the file is larger then the available memory.
285 * Rebuffers the file by setting the start of the audio buffer to be
286 * new_offset and filling from there.
288 static int fill_buffer(int new_offset
){
289 size_t n
, bytestoread
;
290 long temp
= *rb
->current_tick
;
291 rb
->lseek(fd
,new_offset
,SEEK_SET
);
293 if(new_offset
+ audiobufsize
<= track
.filesize
)
294 bytestoread
= audiobufsize
;
296 bytestoread
= track
.filesize
-new_offset
;
298 n
= rb
->read(fd
, audiobuf
,bytestoread
);
300 if (n
!= bytestoread
)
302 log_text("Read failed.",true);
303 DEBUGF("read fail: got %d bytes, expected %d\n", (int)n
, (int)audiobufsize
);
315 /*keep track of how much time we spent buffering*/
316 rebuffertick
+= *rb
->current_tick
-temp
;
321 /* WAV output or calculate crc32 of output*/
322 static void pcmbuf_insert_wav_checksum(const void *ch1
, const void *ch2
, int count
)
324 const int16_t* data1_16
;
325 const int16_t* data2_16
;
326 const int32_t* data1_32
;
327 const int32_t* data2_32
;
328 unsigned char* p
= wavbuffer
;
329 const int scale
= wavinfo
.sampledepth
- 15;
330 const int dc_bias
= 1 << (scale
- 1);
331 int channels
= (wavinfo
.stereomode
== STEREO_MONO
) ? 1 : 2;
333 /* Prevent idle poweroff */
334 rb
->reset_poweroff_timer();
337 count
= process_dsp(ch1
, ch2
, count
);
338 wavinfo
.totalsamples
+= count
;
341 unsigned char *s
= dspbuffer
, *d
= dspbuffer
;
352 crc32
= rb
->crc_32(dspbuffer
, count
* 2 * channels
, crc32
);
354 rb
->write(wavinfo
.fd
, dspbuffer
, count
* 2 * channels
);
358 if (wavinfo
.sampledepth
<= 16) {
362 switch(wavinfo
.stereomode
)
364 case STEREO_INTERLEAVED
:
366 int2le16(p
,*data1_16
++);
368 int2le16(p
,*data1_16
++);
373 case STEREO_NONINTERLEAVED
:
375 int2le16(p
,*data1_16
++);
377 int2le16(p
,*data2_16
++);
385 int2le16(p
,*data1_16
++);
394 switch(wavinfo
.stereomode
)
396 case STEREO_INTERLEAVED
:
398 int2le16(p
, clip_sample((*data1_32
++ + dc_bias
) >> scale
));
400 int2le16(p
, clip_sample((*data1_32
++ + dc_bias
) >> scale
));
405 case STEREO_NONINTERLEAVED
:
407 int2le16(p
, clip_sample((*data1_32
++ + dc_bias
) >> scale
));
409 int2le16(p
, clip_sample((*data2_32
++ + dc_bias
) >> scale
));
417 int2le16(p
, clip_sample((*data1_32
++ + dc_bias
) >> scale
));
424 wavinfo
.totalsamples
+= count
;
426 crc32
= rb
->crc_32(wavbuffer
, p
- wavbuffer
, crc32
);
428 rb
->write(wavinfo
.fd
, wavbuffer
, p
- wavbuffer
);
432 /* Set song position in WPS (value in ms). */
433 static void set_elapsed(unsigned long value
)
439 /* Read next <size> amount bytes from file buffer to <ptr>.
440 Will return number of bytes read or 0 if end of file. */
441 static size_t read_filebuf(void *ptr
, size_t size
)
443 if (ci
.curpos
> (off_t
)track
.filesize
)
447 size_t realsize
= MIN(track
.filesize
-ci
.curpos
,size
);
449 /* check if we have enough bytes ready*/
450 if(realsize
>(audiobufsize
- (ci
.curpos
-offset
)))
452 /*rebuffer so that we start at ci.curpos*/
453 fill_buffer(ci
.curpos
);
456 rb
->memcpy(ptr
, audiobuf
+ (ci
.curpos
-offset
), realsize
);
457 ci
.curpos
+= realsize
;
463 /* Request pointer to file buffer which can be used to read
464 <realsize> amount of data. <reqsize> tells the buffer system
465 how much data it should try to allocate. If <realsize> is 0,
466 end of file is reached. */
467 static void* request_buffer(size_t *realsize
, size_t reqsize
)
469 *realsize
= MIN(track
.filesize
-ci
.curpos
,reqsize
);
471 /*check if we have enough bytes ready - requested > bufsize-currentbufpos*/
472 if(*realsize
>(audiobufsize
- (ci
.curpos
-offset
)))
474 /*rebuffer so that we start at ci.curpos*/
475 fill_buffer(ci
.curpos
);
478 return (audiobuf
+ (ci
.curpos
-offset
));
481 /* Advance file buffer position by <amount> amount of bytes. */
482 static void advance_buffer(size_t amount
)
488 /* Seek file buffer to position <newpos> beginning of file. */
489 static bool seek_buffer(size_t newpos
)
496 /* Codec should call this function when it has done the seeking. */
497 static void seek_complete(void)
502 /* Request file change from file buffer. Returns true is next
503 track is available and changed. If return value is false,
504 codec should exit immediately with PLUGIN_OK status. */
505 static bool request_next_track(void)
507 /* We are only decoding a single track */
512 static void set_offset(size_t value
)
519 /* Configure different codec buffer parameters. */
520 static void configure(int setting
, intptr_t value
)
523 rb
->dsp_configure(ci
.dsp
, setting
, value
);
526 case DSP_SWITCH_FREQUENCY
:
527 case DSP_SET_FREQUENCY
:
528 DEBUGF("samplerate=%d\n",(int)value
);
529 wavinfo
.samplerate
= (int)value
;
532 case DSP_SET_SAMPLE_DEPTH
:
533 DEBUGF("sampledepth = %d\n",(int)value
);
534 wavinfo
.sampledepth
=(int)value
;
537 case DSP_SET_STEREO_MODE
:
538 DEBUGF("Stereo mode = %d\n",(int)value
);
539 wavinfo
.stereomode
=(int)value
;
545 static void init_ci(void)
547 /* --- Our "fake" implementations of the codec API functions. --- */
549 ci
.codec_get_buffer
= codec_get_buffer
;
551 if (wavinfo
.fd
>= 0 || checksum
) {
552 ci
.pcmbuf_insert
= pcmbuf_insert_wav_checksum
;
554 ci
.pcmbuf_insert
= pcmbuf_insert_null
;
557 ci
.set_elapsed
= set_elapsed
;
558 ci
.read_filebuf
= read_filebuf
;
559 ci
.request_buffer
= request_buffer
;
560 ci
.advance_buffer
= advance_buffer
;
561 ci
.seek_buffer
= seek_buffer
;
562 ci
.seek_complete
= seek_complete
;
563 ci
.request_next_track
= request_next_track
;
564 ci
.set_offset
= set_offset
;
565 ci
.configure
= configure
;
566 ci
.dsp
= (struct dsp_config
*)rb
->dsp_configure(NULL
, DSP_MYDSP
,
569 /* --- "Core" functions --- */
572 ci
.sleep
= rb
->sleep
;
573 ci
.yield
= rb
->yield
;
575 /* strings and memory */
576 ci
.strcpy
= rb
->strcpy
;
577 ci
.strlen
= rb
->strlen
;
578 ci
.strcmp
= rb
->strcmp
;
579 ci
.strcat
= rb
->strcat
;
580 ci
.memset
= rb
->memset
;
581 ci
.memcpy
= rb
->memcpy
;
582 ci
.memmove
= rb
->memmove
;
583 ci
.memcmp
= rb
->memcmp
;
584 ci
.memchr
= rb
->memchr
;
585 ci
.strcasestr
= rb
->strcasestr
;
586 #if defined(DEBUG) || defined(SIMULATOR)
587 ci
.debugf
= rb
->debugf
;
589 #ifdef ROCKBOX_HAS_LOGF
593 ci
.qsort
= rb
->qsort
;
594 ci
.global_settings
= rb
->global_settings
;
597 ci
.profile_thread
= rb
->profile_thread
;
598 ci
.profstop
= rb
->profstop
;
599 ci
.profile_func_enter
= rb
->profile_func_enter
;
600 ci
.profile_func_exit
= rb
->profile_func_exit
;
603 ci
.cpucache_invalidate
= rb
->cpucache_invalidate
;
604 ci
.cpucache_flush
= rb
->cpucache_flush
;
607 ci
.create_thread
= rb
->create_thread
;
608 ci
.thread_thaw
= rb
->thread_thaw
;
609 ci
.thread_wait
= rb
->thread_wait
;
610 ci
.semaphore_init
= rb
->semaphore_init
;
611 ci
.semaphore_wait
= rb
->semaphore_wait
;
612 ci
.semaphore_release
= rb
->semaphore_release
;
615 #if defined(CPU_ARM) && (CONFIG_PLATFORM & PLATFORM_NATIVE)
616 ci
.__div0
= rb
->__div0
;
620 static void codec_thread(void)
622 const char* codecname
;
624 int res
= CODEC_ERROR
;
626 codecname
= rb
->get_codec_filename(track
.id3
.codectype
);
628 /* Load the codec and start decoding. */
629 handle
= rb
->codec_load_file(codecname
,&ci
);
633 res
= rb
->codec_begin(handle
);
634 rb
->codec_close(handle
);
637 /* Signal to the main thread that we are done */
638 endtick
= *rb
->current_tick
- rebuffertick
;
639 codec_playing
= false;
642 static enum plugin_status
test_track(const char* filename
)
645 enum plugin_status res
= PLUGIN_ERROR
;
649 unsigned long duration
;
654 /* Display filename (excluding any path)*/
655 ch
= rb
->strrchr(filename
, '/');
661 rb
->snprintf(str
,sizeof(str
),"%s",ch
);
664 log_text("Loading...",false);
666 fd
= rb
->open(filename
,O_RDONLY
);
669 log_text("Cannot open file",true);
673 track
.filesize
= rb
->filesize(fd
);
675 /* Clear the id3 struct */
676 rb
->memset(&track
.id3
, 0, sizeof(struct mp3entry
));
678 if (!rb
->get_metadata(&(track
.id3
), fd
, filename
))
680 log_text("Cannot read metadata",true);
684 if (track
.filesize
> audiosize
)
686 audiobufsize
=audiosize
;
690 audiobufsize
=track
.filesize
;
693 n
= rb
->read(fd
, audiobuf
, audiobufsize
);
695 if (n
!= audiobufsize
)
697 log_text("Read failed.",true);
702 /* Initialise the function pointers in the codec API */
705 /* Prepare the codec struct for playing the whole file */
706 ci
.filesize
= track
.filesize
;
708 ci
.taginfo_ready
= &taginfo_ready
;
710 ci
.stop_codec
= false;
715 rb
->dsp_configure(ci
.dsp
, DSP_RESET
, 0);
721 starttick
= *rb
->current_tick
;
723 codec_playing
= true;
725 rb
->codec_thread_do_callback(codec_thread
, NULL
);
727 /* Wait for codec thread to die */
728 while (codec_playing
)
731 rb
->snprintf(str
,sizeof(str
),"%d of %d",elapsed
,(int)track
.id3
.length
);
734 ticks
= endtick
- starttick
;
736 /* Be sure it is done */
737 rb
->codec_thread_do_callback(NULL
, NULL
);
743 rb
->snprintf(str
, sizeof(str
), "CRC32 - %08x", (unsigned)crc32
);
746 else if (wavinfo
.fd
< 0)
748 /* Display benchmark information */
749 rb
->snprintf(str
,sizeof(str
),"Decode time - %d.%02ds",(int)ticks
/100,(int)ticks
%100);
752 duration
= track
.id3
.length
/ 10;
753 rb
->snprintf(str
,sizeof(str
),"File duration - %d.%02ds",(int)duration
/100,(int)duration
%100);
757 speed
= duration
* 10000 / ticks
;
761 rb
->snprintf(str
,sizeof(str
),"%d.%02d%% realtime",(int)speed
/100,(int)speed
%100);
764 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
765 /* show effective clockrate in MHz needed for realtime decoding */
768 int freq
= CPUFREQ_MAX
;
770 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
772 freq
= CPUFREQ_NORMAL
;
775 speed
= freq
/ speed
;
776 rb
->snprintf(str
,sizeof(str
),"%d.%02dMHz needed for realtime",
777 (int)speed
/100,(int)speed
%100);
796 /* plugin entry point */
797 enum plugin_status
plugin_start(const void* parameter
)
799 int result
, selection
= 0;
800 enum plugin_status res
= PLUGIN_OK
;
802 struct dirent
*entry
;
805 char dirpath
[MAX_PATH
];
806 char filename
[MAX_PATH
];
809 if (parameter
== NULL
)
811 rb
->splash(HZ
*2, "No File");
815 wavbuffer
= rb
->plugin_get_buffer(&buffer_size
);
816 dspbuffer
= wavbuffer
+ buffer_size
/ 2;
818 codec_mallocbuf
= rb
->plugin_get_audio_buffer(&audiosize
);
819 /* Align codec_mallocbuf to pointer size, tlsf wants that */
820 codec_mallocbuf
= (void*)(((intptr_t)codec_mallocbuf
+
821 sizeof(intptr_t)-1) & ~(sizeof(intptr_t)-1));
822 audiobuf
= SKIPBYTES(codec_mallocbuf
, CODEC_SIZE
);
823 audiosize
-= CODEC_SIZE
;
825 rb
->lcd_clear_display();
832 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
837 SPEED_TEST_DIR_WITH_DSP
,
845 menu
, "test_codec", NULL
,
848 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
852 "Speed test with DSP",
853 "Speed test folder with DSP",
854 "Write WAV with DSP",
862 rb
->lcd_clear_display();
864 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
868 result
= rb
->do_menu(&menu
, &selection
, NULL
, false);
869 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
873 rb
->set_option("Boosting", &boost
, INT
,
874 boost_settings
, 2, NULL
);
889 if ((checksum
= (result
== CHECKSUM
|| result
== CHECKSUM_DIR
)))
890 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
896 if ((use_dsp
= ((result
>= SPEED_TEST_WITH_DSP
)
897 && (result
<= WRITE_WAV_WITH_DSP
)))) {
900 if (result
== SPEED_TEST
) {
903 } else if (result
== SPEED_TEST_DIR
) {
907 /* Only create a log file when we are testing a folder */
908 if (!log_init(true)) {
909 rb
->splash(HZ
*2, "Cannot create logfile");
913 } else if (result
== WRITE_WAV
) {
915 init_wav("/test.wav");
916 if (wavinfo
.fd
< 0) {
917 rb
->splash(HZ
*2, "Cannot create /test.wav");
921 } else if (result
== MENU_ATTACHED_USB
) {
922 res
= PLUGIN_USB_CONNECTED
;
924 } else if (result
< 0) {
930 /* Test all files in the same directory as the file selected by the
933 rb
->strlcpy(dirpath
,parameter
,sizeof(dirpath
));
934 ch
= rb
->strrchr(dirpath
,'/');
937 DEBUGF("Scanning directory \"%s\"\n",dirpath
);
938 dir
= rb
->opendir(dirpath
);
940 entry
= rb
->readdir(dir
);
942 struct dirinfo info
= rb
->dir_get_info(dir
, entry
);
943 if (!(info
.attribute
& ATTR_DIRECTORY
)) {
944 rb
->snprintf(filename
,sizeof(filename
),"%s%s",dirpath
,entry
->d_name
);
945 test_track(filename
);
949 /* Read next entry */
950 entry
= rb
->readdir(dir
);
956 /* Just test the file */
957 res
= test_track(parameter
);
959 /* Close WAV file (if there was one) */
960 if (wavinfo
.fd
>= 0) {
962 log_text("Wrote /test.wav",true);
964 while (rb
->button_get(true) != TESTCODEC_EXITBUTTON
);
967 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
969 rb
->cpu_boost(false);
972 rb
->button_clear_queue();