summaryrefslogtreecommitdiff
path: root/firmware/mpeg.h
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-05-24 12:22:14 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-05-24 12:22:14 +0000
commit1ac4600e5bf3ff937d404622158111b576651829 (patch)
tree0d2d106b3f9a44aef8a6900a4142be0cafb241cc /firmware/mpeg.h
parentffb6a9db8e1aeef43306e5f0c83c1547bd82546b (diff)
downloadrockbox-1ac4600e5bf3ff937d404622158111b576651829.tar.gz
rockbox-1ac4600e5bf3ff937d404622158111b576651829.zip
First version
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@695 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/mpeg.h')
-rw-r--r--firmware/mpeg.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/firmware/mpeg.h b/firmware/mpeg.h
new file mode 100644
index 0000000000..493e5f55a2
--- /dev/null
+++ b/firmware/mpeg.h
@@ -0,0 +1,31 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef _MPEG_H_
20#define _MPEG_H_
21
22void mpeg_init(void);
23void mpeg_play(char* trackname);
24void mpeg_stop(void);
25void mpeg_pause(void);
26void mpeg_resume(void);
27void mpeg_volume(int percent);
28void mpeg_bass(int percent);
29void mpeg_treble(int percent);
30
31#endif