Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/audio
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2011-04-16 15:34:12 +0000
committerStijn Buys <ingar@osirion.org>2011-04-16 15:34:12 +0000
commit247b7593a943ac35f96039a5e2e5d412fefacadd (patch)
treebdc6307f5cb4a27f770725f449377dccf1c2c2ef /src/audio
parent1e68f51dc0a135872040d2455e5f4ae0fdd1a733 (diff)
Renamed audio/wav to audio/wavfile to be consistent with the other file readers.
Diffstat (limited to 'src/audio')
-rw-r--r--src/audio/Makefile.am15
-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
*/