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)
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 @@
+/***************************************************************************
+ * __________ __ ___.
+ * Open \______ \ ____ ____ | | _\_ |__ _______ ___
+ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+ * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+ * \/ \/ \/ \/ \/
+ * $Id$
+ *
+ * Copyright (C) 2002 by Linus Nielsen Feltzing
+ *
+ * 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.
+ *
+ ****************************************************************************/
+#ifndef _MPEG_H_
+#define _MPEG_H_
+
+void mpeg_init(void);
+void mpeg_play(char* trackname);
+void mpeg_stop(void);
+void mpeg_pause(void);
+void mpeg_resume(void);
+void mpeg_volume(int percent);
+void mpeg_bass(int percent);
+void mpeg_treble(int percent);
+
+#endif