diff options
Diffstat (limited to 'src/audio')
-rw-r--r-- | src/audio/Makefile.am | 15 | ||||
-rw-r--r-- | src/audio/wavfile.cc (renamed from src/audio/wav.cc) | 8 | ||||
-rw-r--r-- | src/audio/wavfile.h (renamed from src/audio/wav.h) | 2 |
3 files changed, 15 insertions, 10 deletions
diff --git a/src/audio/Makefile.am b/src/audio/Makefile.am index 3d9805d..11b7749 100644 --- a/src/audio/Makefile.am +++ b/src/audio/Makefile.am @@ -7,8 +7,19 @@ else noinst_LTLIBRARIES = libaudio.la endif -noinst_HEADERS = audio.h buffers.h pcm.h sources.h wav.h -libaudio_la_SOURCES = audio.cc buffers.cc pcm.cc sources.cc wav.cc +noinst_HEADERS = \ + audio.h \ + buffers.h \ + pcm.h \ + sources.h \ + wavfile.h + +libaudio_la_SOURCES = \ + audio.cc \ + buffers.cc \ + pcm.cc \ + sources.cc \ + wavfile.cc libaudio_la_DEPENDENCIES = \ $(top_builddir)/src/sys/libsys.la diff --git a/src/audio/wav.cc b/src/audio/wavfile.cc index 0f86a65..e61039c 100644 --- a/src/audio/wav.cc +++ b/src/audio/wavfile.cc @@ -1,15 +1,9 @@ /* - audio/wav.h + audio/wavfile.cc This file is part of the Osirion project and is distributed under the terms of the GNU General Public License version 2 */ -/* -see - -http://ccrma.stanford.edu/CCRMA/Courses/422/projects/WaveFormat/ -*/ - #include "string.h" #include <iostream> diff --git a/src/audio/wav.h b/src/audio/wavfile.h index 2513b48..f987b80 100644 --- a/src/audio/wav.h +++ b/src/audio/wavfile.h @@ -1,5 +1,5 @@ /* - audio/wav.h + audio/wavfile.h This file is part of the Osirion project and is distributed under the terms of the GNU General Public License version 2 */ |