First GAUDOUT working demo.
This commit is contained in:
parent
47cfa8d152
commit
6d5a748f1c
BIN
demos/modules/audio/play-wave/allwrong.wav
Normal file
BIN
demos/modules/audio/play-wave/allwrong.wav
Normal file
Binary file not shown.
3
demos/modules/audio/play-wave/demo.mk
Normal file
3
demos/modules/audio/play-wave/demo.mk
Normal file
@ -0,0 +1,3 @@
|
||||
DEMODIR = $(GFXLIB)/demos/modules/audio/play-wave
|
||||
GFXINC += $(DEMODIR)
|
||||
GFXSRC += $(DEMODIR)/main.c
|
59
demos/modules/audio/play-wave/gfxconf.h
Normal file
59
demos/modules/audio/play-wave/gfxconf.h
Normal file
@ -0,0 +1,59 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2013, Joel Bodenmann aka Tectu <joel@unormal.org>
|
||||
* Copyright (c) 2012, 2013, Andrew Hannam aka inmarket
|
||||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* * Neither the name of the <organization> nor the
|
||||
* names of its contributors may be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
||||
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Copy this file into your project directory and rename it as gfxconf.h
|
||||
* Edit your copy to turn on the GFX features you want to use.
|
||||
*/
|
||||
|
||||
#ifndef _GFXCONF_H
|
||||
#define _GFXCONF_H
|
||||
|
||||
/* The operating system to use. One of these must be defined - preferably in your Makefile */
|
||||
//#define GFX_USE_OS_CHIBIOS FALSE
|
||||
//#define GFX_USE_OS_WIN32 FALSE
|
||||
//#define GFX_USE_OS_LINUX FALSE
|
||||
//#define GFX_USE_OS_OSX FALSE
|
||||
|
||||
/* GFX sub-systems to turn on */
|
||||
#define GFX_USE_GDISP TRUE
|
||||
#define GFX_USE_GAUDOUT TRUE
|
||||
#define GFX_USE_GFILE TRUE
|
||||
|
||||
/* Features for the GDISP sub-system. */
|
||||
#define GDISP_NEED_VALIDATION TRUE
|
||||
#define GDISP_NEED_TEXT TRUE
|
||||
|
||||
/* GDISP fonts to include */
|
||||
#define GDISP_INCLUDE_FONT_UI2 TRUE
|
||||
|
||||
/* Features for the GFILE sub-system */
|
||||
#define GFILE_NEED_ROMFS TRUE
|
||||
|
||||
#endif /* _GFXCONF_H */
|
193
demos/modules/audio/play-wave/main.c
Normal file
193
demos/modules/audio/play-wave/main.c
Normal file
@ -0,0 +1,193 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2013, Joel Bodenmann aka Tectu <joel@unormal.org>
|
||||
* Copyright (c) 2012, 2013, Andrew Hannam aka inmarket
|
||||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* * Neither the name of the <organization> nor the
|
||||
* names of its contributors may be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
||||
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/**
|
||||
* This demo demonstrates the use of the GAUDOUT module to play a wave file.
|
||||
*
|
||||
*/
|
||||
#include "gfx.h"
|
||||
|
||||
/* Specify our timing parameters */
|
||||
#define MY_AUDIO_CHANNEL 0 /* Use channel 0 */
|
||||
#define MY_AUDIO_CHANNEL_IS_STEREO GAUDOUT_CHANNEL0_STEREO /* Is it stereo? */
|
||||
|
||||
// Storage for the wave header
|
||||
static char whdr[32];
|
||||
|
||||
|
||||
/*
|
||||
* Application entry point.
|
||||
*/
|
||||
int main(void) {
|
||||
font_t font;
|
||||
GFILE *f;
|
||||
char *errmsg;
|
||||
uint32_t toplay;
|
||||
uint32_t frequency;
|
||||
ArrayDataFormat datafmt;
|
||||
uint32_t len;
|
||||
GAudioData *paud;
|
||||
|
||||
// Initialise everything
|
||||
gfxInit();
|
||||
errmsg = 0;
|
||||
|
||||
// Any font will do
|
||||
font = gdispOpenFont("*");
|
||||
|
||||
// Allocate audio buffers - 4 x 512 byte buffers. You may need to increase this for slower cpu's.
|
||||
if (!gaudioAllocBuffers(4, 512)) {
|
||||
errmsg = "Err: No Memory";
|
||||
goto theend;
|
||||
}
|
||||
|
||||
// Open the wave file
|
||||
if (!(f = gfileOpen("allwrong.wav", "r"))) {
|
||||
errmsg = "Err: Open WAV";
|
||||
goto theend;
|
||||
}
|
||||
|
||||
// Read the wave header
|
||||
if (gfileRead(f, whdr, 20) != 20) {
|
||||
errmsg = "Err: Read hdr";
|
||||
goto theend;
|
||||
}
|
||||
|
||||
// Check the wave header
|
||||
if (whdr[0] != 'R' || whdr[1] != 'I' || whdr[2] != 'F' || whdr[3] != 'F' // RIFF label
|
||||
|| whdr[8] != 'W' || whdr[9] != 'A' || whdr[10] != 'V' || whdr[11] != 'E' // WAVE label
|
||||
|| whdr[12] != 'f' || whdr[13] != 'm' || whdr[14] != 't' || whdr[15] != ' ' // fmt label
|
||||
) {
|
||||
errmsg = "Err: Bad header";
|
||||
goto theend;
|
||||
}
|
||||
|
||||
// Read the fmt block
|
||||
len = (((uint32_t)(uint8_t)whdr[16])<<0) | (((uint32_t)(uint8_t)whdr[17])<<8)
|
||||
| (((uint32_t)(uint8_t)whdr[18])<<16) | (((uint32_t)(uint8_t)whdr[19])<<24);
|
||||
if (len > sizeof(whdr) || len < 16) {
|
||||
errmsg = "Err: Bad fmt len";
|
||||
goto theend;
|
||||
}
|
||||
if (gfileRead(f, whdr, len) != len) {
|
||||
errmsg = "Err: Read fmt block";
|
||||
goto theend;
|
||||
}
|
||||
if (whdr[0] != 1 || whdr[1] != 0 // PCM format
|
||||
|| (whdr[14] != 8 && whdr[14] != 16) || whdr[15] != 0 // 8 or 16 bits per sample
|
||||
) {
|
||||
errmsg = "Err: Bad fmt block";
|
||||
goto theend;
|
||||
}
|
||||
|
||||
// Check stereo/mono
|
||||
#if MY_AUDIO_CHANNEL_IS_STEREO
|
||||
if (whdr[2] != 2 || whdr[3] != 0) {
|
||||
errmsg = "Err: Not stereo";
|
||||
goto theend;
|
||||
}
|
||||
#else
|
||||
if (whdr[2] != 1 || whdr[3] != 0) {
|
||||
errmsg = "Err: Not mono";
|
||||
goto theend;
|
||||
}
|
||||
#endif
|
||||
|
||||
// Get the sample frequency (little endian format) and format
|
||||
frequency = (((uint32_t)(uint8_t)whdr[4])<<0) | (((uint32_t)(uint8_t)whdr[5])<<8)
|
||||
| (((uint32_t)(uint8_t)whdr[6])<<16) | (((uint32_t)(uint8_t)whdr[7])<<24);
|
||||
datafmt = whdr[14] == 8 ? ARRAY_DATA_8BITUNSIGNED : ARRAY_DATA_16BITSIGNED;
|
||||
|
||||
// Initialise the audio output device
|
||||
if (!gaudioPlayInit(MY_AUDIO_CHANNEL, frequency, datafmt)) {
|
||||
// For this demo we don't try and do any format conversions if the driver won't accept
|
||||
// what we initially request.
|
||||
errmsg = "Err: Bad format/freq";
|
||||
goto theend;
|
||||
}
|
||||
|
||||
// Get our current file position
|
||||
len += 20;
|
||||
|
||||
// Read RIFF blocks until we get to the data RIFF block (contains the audio)
|
||||
while(TRUE) {
|
||||
if (gfileRead(f, whdr, 8) != 8) {
|
||||
errmsg = "Err: Read block";
|
||||
goto theend;
|
||||
}
|
||||
|
||||
// Get the block length (little endian format)
|
||||
toplay = (((uint32_t)(uint8_t)whdr[4])<<0) | (((uint32_t)(uint8_t)whdr[5])<<8)
|
||||
| (((uint32_t)(uint8_t)whdr[6])<<16) | (((uint32_t)(uint8_t)whdr[7])<<24);
|
||||
|
||||
// Stop scanning when this is a data block
|
||||
if (whdr[0] == 'd' && whdr[1] == 'a' && whdr[2] == 't' && whdr[3] == 'a')
|
||||
break;
|
||||
|
||||
// Seek to the next block header
|
||||
len += toplay + 8;
|
||||
if (!gfileSetPos(f, len)) {
|
||||
errmsg = "Err: No data";
|
||||
goto theend;
|
||||
}
|
||||
}
|
||||
|
||||
// Play the file
|
||||
gdispDrawString(0, gdispGetHeight()/2, "Playing...", font, Yellow);
|
||||
while(toplay) {
|
||||
// Get a buffer to put the data into
|
||||
paud = gaudioGetBuffer(TIME_INFINITE); // This should never fail as we are waiting forever
|
||||
|
||||
// How much data can we put in
|
||||
len = toplay > paud->size ? paud->size : toplay;
|
||||
paud->len = len;
|
||||
toplay -= len;
|
||||
|
||||
// Read the data
|
||||
if (gfileRead(f, paud+1, len) != len) {
|
||||
errmsg = "Err: Read fail";
|
||||
goto theend;
|
||||
}
|
||||
|
||||
gaudioPlay(paud);
|
||||
}
|
||||
gfileClose(f);
|
||||
|
||||
// Wait 3 seconds for the play to finish - FIX THIS
|
||||
gfxSleepMilliseconds(3000);
|
||||
gdispDrawString(0, gdispGetHeight()/2+10, "Done", font, Green);
|
||||
|
||||
// The end
|
||||
theend:
|
||||
if (errmsg)
|
||||
gdispDrawString(0, gdispGetHeight()/2, errmsg, font, Red);
|
||||
|
||||
while(TRUE)
|
||||
gfxSleepMilliseconds(1000);
|
||||
}
|
1854
demos/modules/audio/play-wave/romfs_allwrong.h
Normal file
1854
demos/modules/audio/play-wave/romfs_allwrong.h
Normal file
File diff suppressed because it is too large
Load Diff
7
demos/modules/audio/play-wave/romfs_files.h
Normal file
7
demos/modules/audio/play-wave/romfs_files.h
Normal file
@ -0,0 +1,7 @@
|
||||
/**
|
||||
* This file contains the list of files for the ROMFS.
|
||||
*
|
||||
* The files have been converted using...
|
||||
* file2c -dbcs infile outfile
|
||||
*/
|
||||
#include "romfs_allwrong.h"
|
@ -44,7 +44,13 @@
|
||||
#define GAUDOUT_NUM_CHANNELS 2
|
||||
|
||||
/**
|
||||
* @brief The list of audio channels and their uses
|
||||
* @brief Whether each channel is mono or stereo
|
||||
*/
|
||||
#define GAUDOUT_CHANNEL0_STEREO FALSE
|
||||
#define GAUDOUT_CHANNEL1_STEREO TRUE
|
||||
|
||||
/**
|
||||
* @brief The list of audio channel names and their uses
|
||||
* @{
|
||||
*/
|
||||
#define GAUDOUT_MONO 0
|
||||
|
Loading…
Reference in New Issue
Block a user