X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fsndfileimportable.cc;h=5ccab2c0d281ec6367e6bace74940180c9bbbda9;hb=ca25a664d31aa4d16121aa4b41dad8ac04eafb16;hp=99697b888f6918dc613e39afd874c778e1ac4f45;hpb=ac3265d7f49b9c7e0cc78438d92013f359a7c02e;p=ardour.git diff --git a/libs/ardour/sndfileimportable.cc b/libs/ardour/sndfileimportable.cc index 99697b888f..5ccab2c0d2 100644 --- a/libs/ardour/sndfileimportable.cc +++ b/libs/ardour/sndfileimportable.cc @@ -1,8 +1,29 @@ -#include "ardour/sndfileimportable.h" +/* + Copyright (C) 2000,2015 Paul Davis + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +*/ + #include #include #include +#include "pbd/error.h" +#include "ardour/sndfileimportable.h" + using namespace ARDOUR; using namespace std; @@ -15,10 +36,32 @@ SndFileImportableSource::get_timecode_info (SNDFILE* sf, SF_BROADCAST_INFO* binf return 0; } + /* see http://tracker.ardour.org/view.php?id=6208 + * 0xffffffff 0xfffc5680 + * seems to be a bug in Presonus Capture (which generated the file) + * + * still since framepos_t is a signed int, ignore files that could + * lead to negative timestamps for now. + */ + + if (binfo->time_reference_high & 0x80000000) { + char tmp[64]; + snprintf(tmp, sizeof(tmp), "%x%08x", binfo->time_reference_high, binfo->time_reference_low); + PBD::warning << "Invalid Timestamp " << tmp << endmsg; + exists = false; + return 0; + } + exists = true; - int64_t ret = (uint32_t) binfo->time_reference_high; + /* libsndfile reads eactly 4 bytes for high and low, but + * uses "unsigned int" which may or may not be 32 bit little + * endian. + */ + int64_t ret = (uint32_t) (binfo->time_reference_high & 0x7fffffff); ret <<= 32; - ret |= (uint32_t) binfo->time_reference_low; + ret |= (uint32_t) (binfo->time_reference_low & 0xffffffff); + + assert(ret >= 0); return ret; } @@ -43,48 +86,49 @@ SndFileImportableSource::~SndFileImportableSource () { } -nframes_t -SndFileImportableSource::read (Sample* buffer, nframes_t nframes) +framecnt_t +SndFileImportableSource::read (Sample* buffer, framecnt_t nframes) { - nframes_t per_channel = nframes / sf_info.channels; + framecnt_t per_channel = nframes / sf_info.channels; per_channel = sf_readf_float (in.get(), buffer, per_channel); return per_channel * sf_info.channels; } -uint +uint32_t SndFileImportableSource::channels () const { return sf_info.channels; } -nframes_t +framecnt_t SndFileImportableSource::length () const { - return sf_info.frames; + return (framecnt_t) sf_info.frames; } -nframes_t -SndFileImportableSource::samplerate() const +framecnt_t +SndFileImportableSource::samplerate () const { return sf_info.samplerate; } void -SndFileImportableSource::seek (nframes_t /*pos*/) +SndFileImportableSource::seek (framepos_t /*pos*/) { sf_seek (in.get(), 0, SEEK_SET); } -nframes64_t +framepos_t SndFileImportableSource::natural_position () const { - return timecode; + return (framepos_t) timecode; } bool SndFileImportableSource::clamped_at_unity () const { + int const type = sf_info.format & SF_FORMAT_TYPEMASK; int const sub = sf_info.format & SF_FORMAT_SUBMASK; /* XXX: this may not be the full list of formats that are unclamped */ - return (sub != SF_FORMAT_FLOAT && sub != SF_FORMAT_DOUBLE && sub != SF_FORMAT_OGG); + return (sub != SF_FORMAT_FLOAT && sub != SF_FORMAT_DOUBLE && type != SF_FORMAT_OGG); }