summaryrefslogtreecommitdiff
path: root/libs/ardour/sndfileimportable.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
commitbb9cc45cd22af67ac275a5e73accbe14fee664d8 (patch)
treee52977d3eae6ff07b856088041a080a2fa3e5b79 /libs/ardour/sndfileimportable.cc
parent8c4ce1e2ce35571aed5a686671431fdfffae7f8c (diff)
Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only.
Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/sndfileimportable.cc')
-rw-r--r--libs/ardour/sndfileimportable.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/libs/ardour/sndfileimportable.cc b/libs/ardour/sndfileimportable.cc
index d741dd008b..cc68f3ea01 100644
--- a/libs/ardour/sndfileimportable.cc
+++ b/libs/ardour/sndfileimportable.cc
@@ -13,8 +13,8 @@ SndFileImportableSource::get_timecode_info (SNDFILE* sf, SF_BROADCAST_INFO* binf
if (sf_command (sf, SFC_GET_BROADCAST_INFO, binfo, sizeof (*binfo)) != SF_TRUE) {
exists = false;
return 0;
- }
-
+ }
+
exists = true;
int64_t ret = (uint32_t) binfo->time_reference_high;
ret <<= 32;
@@ -27,13 +27,13 @@ SndFileImportableSource::SndFileImportableSource (const string& path)
memset(&sf_info, 0 , sizeof(sf_info));
in.reset( sf_open(path.c_str(), SFM_READ, &sf_info), sf_close);
if (!in) throw failed_constructor();
-
+
SF_BROADCAST_INFO binfo;
bool timecode_exists;
memset (&binfo, 0, sizeof (binfo));
timecode = get_timecode_info (in.get(), &binfo, timecode_exists);
-
+
if (!timecode_exists) {
timecode = 0;
}
@@ -44,7 +44,7 @@ SndFileImportableSource::~SndFileImportableSource ()
}
nframes_t
-SndFileImportableSource::read (Sample* buffer, nframes_t nframes)
+SndFileImportableSource::read (Sample* buffer, nframes_t nframes)
{
nframes_t per_channel = nframes / sf_info.channels;
per_channel = sf_readf_float (in.get(), buffer, per_channel);
@@ -52,13 +52,13 @@ SndFileImportableSource::read (Sample* buffer, nframes_t nframes)
}
uint
-SndFileImportableSource::channels () const
+SndFileImportableSource::channels () const
{
return sf_info.channels;
}
nframes_t
-SndFileImportableSource::length () const
+SndFileImportableSource::length () const
{
return sf_info.frames;
}