1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2002 Daniel Stenberg
*
* 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 <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "file.h"
#include "lcd.h"
#include "button.h"
#include "kernel.h"
#include "tree.h"
#include "debug.h"
#include "id3.h"
#include "mpeg.h"
#ifdef MPEG_PLAY
#include "mpegplay.h"
#endif
#define LINE_Y 1 /* initial line */
void playtune(char *dir, char *file)
{
static char mfile[256];
char buffer[256];
mp3entry mp3;
bool good=1;
snprintf(buffer, sizeof(buffer), "%s/%s", dir, file);
if(mp3info(&mp3, buffer)) {
DEBUGF("id3 failure!");
good=0;
}
lcd_clear_display();
#ifdef HAVE_LCD_BITMAP
lcd_setmargins(0,0);
lcd_setfont(0);
#endif
if(!good) {
lcd_puts(0, 0, "[no id3 info]");
}
else {
#ifdef HAVE_LCD_BITMAP
lcd_puts(0, 0, "[id3 info]");
lcd_puts(0, LINE_Y, mp3.title?mp3.title:"");
lcd_puts(0, LINE_Y+1, mp3.album?mp3.album:"");
lcd_puts(0, LINE_Y+2, mp3.artist?mp3.artist:"");
snprintf(buffer,sizeof(buffer), "%d ms", mp3.length);
lcd_puts(0, LINE_Y+3, buffer);
snprintf(buffer,sizeof(buffer), "%d kbits", mp3.bitrate);
lcd_puts(0, LINE_Y+4, buffer);
snprintf(buffer,sizeof(buffer), "%d Hz", mp3.frequency);
lcd_puts(0, LINE_Y+5, buffer);
#else
lcd_puts(0, 0, mp3.artist?mp3.artist:"<no artist>");
lcd_puts(0, 1, mp3.title?mp3.title:"<no title>");
#endif
}
#ifdef HAVE_LCD_BITMAP
lcd_update();
#endif
snprintf(mfile, sizeof(mfile), "%s/%s", dir, file);
#if !defined(SIMULATOR) || defined(MPEGPLAY)
mpeg_play(mfile);
#endif
while(1) {
int key = button_get();
if(!key) {
sleep(30);
continue;
}
switch(key) {
#ifdef HAVE_RECORDER_KEYPAD
case BUTTON_OFF:
case BUTTON_LEFT:
#else
case BUTTON_STOP:
#endif
return;
break;
}
}
}
|