3 * Copyright (c) 2006 acmesystems.it - john@acmesystems.it
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307USA
19 * Feedback, Bugs... info@acmesystems.it
23 #define MP3_CHUNK_SIZE 4096
24 #define MP3_BUFFERING 0
26 #define MP3_BUFFER_FINISHED 2
27 #define MP3_PLAY_FINISHED 3
29 typedef struct _MP3_DATA
{
30 unsigned char mp3
[MP3_CHUNK_SIZE
];
35 #define IOCTL_MP3_INIT 0x01
36 #define IOCTL_MP3_RESET 0x02
37 #define IOCTL_MP3_SETVOLUME 0x03
38 #define IOCTL_MP3_GETVOLUME 0x04
39 typedef struct _AUDIO_DATA
{
41 unsigned int sample_rate
;
42 unsigned char is_stereo
;
44 #define IOCTL_MP3_GETAUDIODATA 0x05
46 #define IOCTL_MP3_CLEARBUFFER 0x06
47 #define IOCTL_MP3_PLAY 0x07
48 typedef struct _MP3_BEEP
{
52 #define IOCTL_MP3_BEEP 0x08
53 #define IOCTL_MP3_END_REACHED 0x09
55 #define IOCTL_MP3_BASS 0x10
57 #define CRYSTAL12288 0x9800
58 #define CRYSTAL24576 0x0
65 unsigned char mp3_send_data_to_buffer(MP3_DATA mp3_data
);
66 unsigned char mp3_buffer_finished(void);
67 unsigned char mp3_play(void);
70 void mp3_bass(unsigned char t_freq
, unsigned char t_amp
,
71 unsigned char b_freq
, unsigned char b_amp
);
72 void mp3_set_volume(unsigned char left
, unsigned char right
);
This page took 0.045129 seconds and 5 git commands to generate.