Remove leftover backslash from macro conversion in FRACTMUL_SHL
[maemo-rb.git] / apps / plugins / test_codec.c
blob5c9820109ff3d7377e541b0c6b52593632147f93
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 ****************************************************************************/
21 #include "plugin.h"
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
44 #else
45 #define TESTCODEC_EXITBUTTON BUTTON_SELECT
46 #endif
48 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
49 static unsigned int boost =1;
51 static const struct opt_items boost_settings[2] = {
52 { "No", -1 },
53 { "Yes", -1 },
56 #endif
58 /* Log functions copied from test_disk.c */
59 static int line = 0;
60 static int max_line = 0;
61 static int log_fd = -1;
63 static void log_close(void)
65 if (log_fd >= 0)
66 rb->close(log_fd);
69 static bool log_init(bool use_logfile)
71 int h;
72 char logfilename[MAX_PATH];
74 rb->lcd_getstringsize("A", NULL, &h);
75 max_line = LCD_HEIGHT / h;
76 line = 0;
77 rb->lcd_clear_display();
78 rb->lcd_update();
80 if (use_logfile) {
81 log_close();
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);
85 return log_fd >= 0;
88 return true;
91 static void log_text(char *text, bool advance)
93 rb->lcd_puts(0, line, text);
94 rb->lcd_update();
95 if (advance)
97 if (++line >= max_line)
98 line = 0;
99 if (log_fd >= 0)
100 rb->fdprintf(log_fd, "%s\n", text);
104 struct wavinfo_t
106 int fd;
107 int samplerate;
108 int channels;
109 int sampledepth;
110 int stereomode;
111 int totalsamples;
114 static void* audiobuf;
115 static void* codec_mallocbuf;
116 static size_t audiosize;
117 static size_t audiobufsize;
118 static int offset;
119 static int fd;
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;
131 static bool use_dsp;
133 static bool checksum;
134 static uint32_t crc32;
136 static volatile unsigned int elapsed;
137 static volatile bool codec_playing;
138 static volatile enum codec_command_action codec_action;
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)
162 buf[0] = (x & 0xff);
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)
170 buf[0] = (x & 0xff);
171 buf[1] = (x & 0xff00) >> 8;
172 buf[2] = (x & 0xff0000) >> 16;
175 static inline void int2le16(unsigned char* buf, int16_t x)
177 buf[0] = (x & 0xff);
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);
190 if (wavinfo.fd >= 0)
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));
198 void close_wav(void)
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);
229 *size = CODEC_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;
239 while (count > 0)
241 int out_count = rb->dsp_output_count(ci.dsp, count);
243 int inp_count = rb->dsp_input_count(ci.dsp, out_count);
245 if (inp_count <= 0)
246 break;
248 if (inp_count > count)
249 inp_count = count;
251 out_count = rb->dsp_process(ci.dsp, dest, src, inp_count);
253 if (out_count <= 0)
254 break;
256 written_count += out_count;
257 dest += out_count * 4;
259 count -= inp_count;
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);
270 return sample;
273 /* Null output */
274 static void pcmbuf_insert_null(const void *ch1, const void *ch2, int count)
276 if (use_dsp)
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;
295 else
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);
304 rb->backlight_on();
306 if (fd >= 0)
308 rb->close(fd);
311 return -1;
313 offset = new_offset;
315 /*keep track of how much time we spent buffering*/
316 rebuffertick += *rb->current_tick-temp;
318 return 0;
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();
336 if (use_dsp) {
337 count = process_dsp(ch1, ch2, count);
338 wavinfo.totalsamples += count;
339 if (channels == 1)
341 unsigned char *s = dspbuffer, *d = dspbuffer;
342 int c = count;
343 while (c-- > 0)
345 *d++ = *s++;
346 *d++ = *s++;
347 s++;
348 s++;
351 if (checksum)
352 crc32 = rb->crc_32(dspbuffer, count * 2 * channels, crc32);
353 else
354 rb->write(wavinfo.fd, dspbuffer, count * 2 * channels);
356 else
358 if (wavinfo.sampledepth <= 16) {
359 data1_16 = ch1;
360 data2_16 = ch2;
362 switch(wavinfo.stereomode)
364 case STEREO_INTERLEAVED:
365 while (count--) {
366 int2le16(p,*data1_16++);
367 p += 2;
368 int2le16(p,*data1_16++);
369 p += 2;
371 break;
373 case STEREO_NONINTERLEAVED:
374 while (count--) {
375 int2le16(p,*data1_16++);
376 p += 2;
377 int2le16(p,*data2_16++);
378 p += 2;
381 break;
383 case STEREO_MONO:
384 while (count--) {
385 int2le16(p,*data1_16++);
386 p += 2;
388 break;
390 } else {
391 data1_32 = ch1;
392 data2_32 = ch2;
394 switch(wavinfo.stereomode)
396 case STEREO_INTERLEAVED:
397 while (count--) {
398 int2le16(p, clip_sample((*data1_32++ + dc_bias) >> scale));
399 p += 2;
400 int2le16(p, clip_sample((*data1_32++ + dc_bias) >> scale));
401 p += 2;
403 break;
405 case STEREO_NONINTERLEAVED:
406 while (count--) {
407 int2le16(p, clip_sample((*data1_32++ + dc_bias) >> scale));
408 p += 2;
409 int2le16(p, clip_sample((*data2_32++ + dc_bias) >> scale));
410 p += 2;
413 break;
415 case STEREO_MONO:
416 while (count--) {
417 int2le16(p, clip_sample((*data1_32++ + dc_bias) >> scale));
418 p += 2;
420 break;
424 wavinfo.totalsamples += count;
425 if (checksum)
426 crc32 = rb->crc_32(wavbuffer, p - wavbuffer, crc32);
427 else
428 rb->write(wavinfo.fd, wavbuffer, p - wavbuffer);
429 } /* else */
432 /* Set song position in WPS (value in ms). */
433 static void set_elapsed(unsigned long value)
435 elapsed = value;
436 ci.id3->elapsed = value;
440 /* Read next <size> amount bytes from file buffer to <ptr>.
441 Will return number of bytes read or 0 if end of file. */
442 static size_t read_filebuf(void *ptr, size_t size)
444 if (ci.curpos > (off_t)track.filesize)
446 return 0;
447 } else {
448 size_t realsize = MIN(track.filesize-ci.curpos,size);
450 /* check if we have enough bytes ready*/
451 if(realsize >(audiobufsize - (ci.curpos-offset)))
453 /*rebuffer so that we start at ci.curpos*/
454 fill_buffer(ci.curpos);
457 rb->memcpy(ptr, audiobuf + (ci.curpos-offset), realsize);
458 ci.curpos += realsize;
459 return realsize;
464 /* Request pointer to file buffer which can be used to read
465 <realsize> amount of data. <reqsize> tells the buffer system
466 how much data it should try to allocate. If <realsize> is 0,
467 end of file is reached. */
468 static void* request_buffer(size_t *realsize, size_t reqsize)
470 *realsize = MIN(track.filesize-ci.curpos,reqsize);
472 /*check if we have enough bytes ready - requested > bufsize-currentbufpos*/
473 if(*realsize>(audiobufsize - (ci.curpos-offset)))
475 /*rebuffer so that we start at ci.curpos*/
476 fill_buffer(ci.curpos);
479 return (audiobuf + (ci.curpos-offset));
482 /* Advance file buffer position by <amount> amount of bytes. */
483 static void advance_buffer(size_t amount)
485 ci.curpos += amount;
486 ci.id3->offset = ci.curpos;
490 /* Seek file buffer to position <newpos> beginning of file. */
491 static bool seek_buffer(size_t newpos)
493 ci.curpos = newpos;
494 return true;
498 /* Codec should call this function when it has done the seeking. */
499 static void seek_complete(void)
501 /* Do nothing */
504 /* Codec calls this to know what it should do next. */
505 static enum codec_command_action get_command(intptr_t *param)
507 rb->yield();
508 return codec_action;
509 (void)param;
512 static void set_offset(size_t value)
514 ci.id3->offset = value;
518 /* Configure different codec buffer parameters. */
519 static void configure(int setting, intptr_t value)
521 if (use_dsp)
522 rb->dsp_configure(ci.dsp, setting, value);
523 switch(setting)
525 case DSP_SWITCH_FREQUENCY:
526 case DSP_SET_FREQUENCY:
527 DEBUGF("samplerate=%d\n",(int)value);
528 wavinfo.samplerate = (int)value;
529 break;
531 case DSP_SET_SAMPLE_DEPTH:
532 DEBUGF("sampledepth = %d\n",(int)value);
533 wavinfo.sampledepth=(int)value;
534 break;
536 case DSP_SET_STEREO_MODE:
537 DEBUGF("Stereo mode = %d\n",(int)value);
538 wavinfo.stereomode=(int)value;
539 break;
544 static void init_ci(void)
546 /* --- Our "fake" implementations of the codec API functions. --- */
548 ci.dsp = (struct dsp_config *)rb->dsp_configure(NULL, DSP_MYDSP,
549 CODEC_IDX_AUDIO);
551 ci.codec_get_buffer = codec_get_buffer;
553 if (wavinfo.fd >= 0 || checksum) {
554 ci.pcmbuf_insert = pcmbuf_insert_wav_checksum;
555 } else {
556 ci.pcmbuf_insert = pcmbuf_insert_null;
559 ci.set_elapsed = set_elapsed;
560 ci.read_filebuf = read_filebuf;
561 ci.request_buffer = request_buffer;
562 ci.advance_buffer = advance_buffer;
563 ci.seek_buffer = seek_buffer;
564 ci.seek_complete = seek_complete;
565 ci.set_offset = set_offset;
566 ci.configure = configure;
567 ci.get_command = get_command;
569 /* --- "Core" functions --- */
571 /* kernel/ system */
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;
588 #endif
589 #ifdef ROCKBOX_HAS_LOGF
590 ci.logf = rb->logf;
591 #endif
593 ci.qsort = rb->qsort;
594 ci.global_settings = rb->global_settings;
596 #ifdef RB_PROFILE
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;
601 #endif
603 ci.cpucache_invalidate = rb->cpucache_invalidate;
604 ci.cpucache_flush = rb->cpucache_flush;
606 #if NUM_CORES > 1
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;
613 #endif
615 #if defined(CPU_ARM) && (CONFIG_PLATFORM & PLATFORM_NATIVE)
616 ci.__div0 = rb->__div0;
617 #endif
620 static void codec_thread(void)
622 const char* codecname;
623 int res;
625 codecname = rb->get_codec_filename(track.id3.codectype);
627 /* Load the codec */
628 res = rb->codec_load_file(codecname, &ci);
630 if (res >= 0)
632 /* Decode the file */
633 res = rb->codec_run_proc();
636 /* Clean up */
637 rb->codec_close();
639 /* Signal to the main thread that we are done */
640 endtick = *rb->current_tick - rebuffertick;
641 codec_playing = false;
644 static enum plugin_status test_track(const char* filename)
646 size_t n;
647 enum plugin_status res = PLUGIN_ERROR;
648 long starttick;
649 long ticks;
650 unsigned long speed;
651 unsigned long duration;
652 const char* ch;
653 char str[MAX_PATH];
654 offset=0;
656 /* Display filename (excluding any path)*/
657 ch = rb->strrchr(filename, '/');
658 if (ch==NULL)
659 ch = filename;
660 else
661 ch++;
663 rb->snprintf(str,sizeof(str),"%s",ch);
664 log_text(str,true);
666 log_text("Loading...",false);
668 fd = rb->open(filename,O_RDONLY);
669 if (fd < 0)
671 log_text("Cannot open file",true);
672 goto exit;
675 track.filesize = rb->filesize(fd);
677 /* Clear the id3 struct */
678 rb->memset(&track.id3, 0, sizeof(struct mp3entry));
680 if (!rb->get_metadata(&(track.id3), fd, filename))
682 log_text("Cannot read metadata",true);
683 goto exit;
686 if (track.filesize > audiosize)
688 audiobufsize=audiosize;
690 } else
692 audiobufsize=track.filesize;
695 n = rb->read(fd, audiobuf, audiobufsize);
697 if (n != audiobufsize)
699 log_text("Read failed.",true);
700 goto exit;
704 /* Initialise the function pointers in the codec API */
705 init_ci();
707 /* Prepare the codec struct for playing the whole file */
708 ci.filesize = track.filesize;
709 ci.id3 = &track.id3;
710 ci.curpos = 0;
712 if (use_dsp)
713 rb->dsp_configure(ci.dsp, DSP_RESET, 0);
715 if (checksum)
716 crc32 = 0xffffffff;
718 rebuffertick=0;
719 starttick = *rb->current_tick;
721 codec_playing = true;
722 codec_action = CODEC_ACTION_NULL;
724 rb->codec_thread_do_callback(codec_thread, NULL);
726 /* Wait for codec thread to die */
727 while (codec_playing)
729 if (rb->button_get_w_tmo(HZ) == TESTCODEC_EXITBUTTON)
731 codec_action = CODEC_ACTION_HALT;
732 break;
735 rb->snprintf(str,sizeof(str),"%d of %d",elapsed,(int)track.id3.length);
736 log_text(str,false);
738 ticks = endtick - starttick;
740 /* Be sure it is done */
741 rb->codec_thread_do_callback(NULL, NULL);
742 rb->backlight_on();
743 log_text(str,true);
745 if (codec_action == CODEC_ACTION_HALT)
747 /* User aborted test */
749 else if (checksum)
751 rb->snprintf(str, sizeof(str), "CRC32 - %08x", (unsigned)crc32);
752 log_text(str,true);
754 else if (wavinfo.fd < 0)
756 /* Display benchmark information */
757 rb->snprintf(str,sizeof(str),"Decode time - %d.%02ds",(int)ticks/100,(int)ticks%100);
758 log_text(str,true);
760 duration = track.id3.length / 10;
761 rb->snprintf(str,sizeof(str),"File duration - %d.%02ds",(int)duration/100,(int)duration%100);
762 log_text(str,true);
764 if (ticks > 0)
765 speed = duration * 10000 / ticks;
766 else
767 speed = 0;
769 rb->snprintf(str,sizeof(str),"%d.%02d%% realtime",(int)speed/100,(int)speed%100);
770 log_text(str,true);
772 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
773 /* show effective clockrate in MHz needed for realtime decoding */
774 if (speed > 0)
776 int freq = CPUFREQ_MAX;
778 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
779 if(!boost)
780 freq = CPUFREQ_NORMAL;
781 #endif
783 speed = freq / speed;
784 rb->snprintf(str,sizeof(str),"%d.%02dMHz needed for realtime",
785 (int)speed/100,(int)speed%100);
786 log_text(str,true);
788 #endif
791 res = PLUGIN_OK;
793 exit:
794 rb->backlight_on();
796 if (fd >= 0)
798 rb->close(fd);
801 return res;
804 /* plugin entry point */
805 enum plugin_status plugin_start(const void* parameter)
807 int result, selection = 0;
808 enum plugin_status res = PLUGIN_OK;
809 int scandir;
810 struct dirent *entry;
811 DIR* dir;
812 char* ch;
813 char dirpath[MAX_PATH];
814 char filename[MAX_PATH];
815 size_t buffer_size;
817 if (parameter == NULL)
819 rb->splash(HZ*2, "No File");
820 return PLUGIN_ERROR;
823 wavbuffer = rb->plugin_get_buffer(&buffer_size);
824 dspbuffer = wavbuffer + buffer_size / 2;
826 codec_mallocbuf = rb->plugin_get_audio_buffer(&audiosize);
827 /* Align codec_mallocbuf to pointer size, tlsf wants that */
828 codec_mallocbuf = (void*)(((intptr_t)codec_mallocbuf +
829 sizeof(intptr_t)-1) & ~(sizeof(intptr_t)-1));
830 audiobuf = SKIPBYTES(codec_mallocbuf, CODEC_SIZE);
831 audiosize -= CODEC_SIZE;
833 rb->lcd_clear_display();
834 rb->lcd_update();
836 enum
838 SPEED_TEST = 0,
839 SPEED_TEST_DIR,
840 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
841 BOOST,
842 #endif
843 WRITE_WAV,
844 SPEED_TEST_WITH_DSP,
845 SPEED_TEST_DIR_WITH_DSP,
846 WRITE_WAV_WITH_DSP,
847 CHECKSUM,
848 CHECKSUM_DIR,
849 QUIT,
852 MENUITEM_STRINGLIST(
853 menu, "test_codec", NULL,
854 "Speed test",
855 "Speed test folder",
856 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
857 "Boosting",
858 #endif
859 "Write WAV",
860 "Speed test with DSP",
861 "Speed test folder with DSP",
862 "Write WAV with DSP",
863 "Checksum",
864 "Checksum folder",
865 "Quit",
869 show_menu:
870 rb->lcd_clear_display();
872 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
873 menu:
874 #endif
876 result = rb->do_menu(&menu, &selection, NULL, false);
877 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
879 if (result == BOOST)
881 rb->set_option("Boosting", &boost, INT,
882 boost_settings, 2, NULL);
883 goto menu;
885 if(boost)
886 rb->cpu_boost(true);
887 #endif
889 if (result == QUIT)
891 res = PLUGIN_OK;
892 goto exit;
895 scandir = 0;
897 if ((checksum = (result == CHECKSUM || result == CHECKSUM_DIR)))
898 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
899 result -= 7;
900 #else
901 result -= 6;
902 #endif
904 if ((use_dsp = ((result >= SPEED_TEST_WITH_DSP)
905 && (result <= WRITE_WAV_WITH_DSP)))) {
906 result -= 3;
908 if (result == SPEED_TEST) {
909 wavinfo.fd = -1;
910 log_init(false);
911 } else if (result == SPEED_TEST_DIR) {
912 wavinfo.fd = -1;
913 scandir = 1;
915 /* Only create a log file when we are testing a folder */
916 if (!log_init(true)) {
917 rb->splash(HZ*2, "Cannot create logfile");
918 res = PLUGIN_ERROR;
919 goto exit;
921 } else if (result == WRITE_WAV) {
922 log_init(false);
923 init_wav("/test.wav");
924 if (wavinfo.fd < 0) {
925 rb->splash(HZ*2, "Cannot create /test.wav");
926 res = PLUGIN_ERROR;
927 goto exit;
929 } else if (result == MENU_ATTACHED_USB) {
930 res = PLUGIN_USB_CONNECTED;
931 goto exit;
932 } else if (result < 0) {
933 res = PLUGIN_OK;
934 goto exit;
937 if (scandir) {
938 /* Test all files in the same directory as the file selected by the
939 user */
941 rb->strlcpy(dirpath,parameter,sizeof(dirpath));
942 ch = rb->strrchr(dirpath,'/');
943 ch[1]=0;
945 DEBUGF("Scanning directory \"%s\"\n",dirpath);
946 dir = rb->opendir(dirpath);
947 if (dir) {
948 entry = rb->readdir(dir);
949 while (entry) {
950 struct dirinfo info = rb->dir_get_info(dir, entry);
951 if (!(info.attribute & ATTR_DIRECTORY)) {
952 rb->snprintf(filename,sizeof(filename),"%s%s",dirpath,entry->d_name);
953 test_track(filename);
955 if (codec_action == CODEC_ACTION_HALT)
956 break;
958 log_text("", true);
961 /* Read next entry */
962 entry = rb->readdir(dir);
965 rb->closedir(dir);
967 } else {
968 /* Just test the file */
969 res = test_track(parameter);
971 /* Close WAV file (if there was one) */
972 if (wavinfo.fd >= 0) {
973 close_wav();
974 log_text("Wrote /test.wav",true);
977 while (codec_action != CODEC_ACTION_HALT &&
978 rb->button_get(true) != TESTCODEC_EXITBUTTON);
981 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
982 if(boost)
983 rb->cpu_boost(false);
984 #endif
986 rb->button_clear_queue();
987 goto show_menu;
989 exit:
990 log_close();
992 return res;