ardour/libs/ardour/coreaudiosource.cc

407 lines
9.3 KiB
C++
Raw Permalink Normal View History

/*
* Copyright (C) 2006-2009 David Robillard <d@drobilla.net>
* Copyright (C) 2006-2009 Taybin Rutkin <taybin@taybin.com>
* Copyright (C) 2006-2017 Paul Davis <paul@linuxaudiosystems.com>
* Copyright (C) 2010-2011 Carl Hetherington <carl@carlh.net>
* Copyright (C) 2015-2017 Robin Gareus <robin@gareus.org>
*
* 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 <algorithm>
#include <inttypes.h>
#include "pbd/error.h"
#include "ardour/coreaudiosource.h"
#include "ardour/utils.h"
#ifdef COREAUDIO105
#include "CAAudioFile.h"
#else
#include "CAExtAudioFile.h"
#endif
#include "CAStreamBasicDescription.h"
#include <glibmm/fileutils.h>
#include "pbd/i18n.h"
#include <AudioToolbox/AudioFormat.h>
using namespace std;
using namespace ARDOUR;
using namespace PBD;
/** Create a new CoreAudioSource using session state, which implies that the
* file must already exist.
*/
CoreAudioSource::CoreAudioSource (Session& s, const XMLNode& node)
: Source (s, node)
, AudioFileSource (s, node)
{
assert (Glib::file_test (_path, Glib::FILE_TEST_EXISTS));
existence_check ();
init_cafile ();
}
/** Create a new CoreAudioSource from an existing file. Sources created with this
* method are never writable or removable.
*/
Merged revisions 6293,6296-6306,6308 via svnmerge from svn+ssh://ardoursvn@subversion.ardour.org/ardour2/branches/build_fixes ........ r6293 | trutkin | 2009-12-05 08:49:37 -0500 (Sat, 05 Dec 2009) | 2 lines fix if-statement in build script ........ r6296 | trutkin | 2009-12-05 09:30:19 -0500 (Sat, 05 Dec 2009) | 5 lines rearrange GTKOSX and darwin dependencies - moved some GTKOSX include paths to generic darwin - made GTKOSX dependent on being on darwin anyways ........ r6297 | trutkin | 2009-12-05 09:35:09 -0500 (Sat, 05 Dec 2009) | 2 lines move coreaudio and audiounit handling to darwin section ........ r6298 | trutkin | 2009-12-05 09:53:40 -0500 (Sat, 05 Dec 2009) | 3 lines use True/False instead of 1/0 fix another if-statement where it should be an elif-statement ........ r6299 | trutkin | 2009-12-05 14:11:09 -0500 (Sat, 05 Dec 2009) | 10 lines fixes to get libardour building - can't cast away volatile, so copy _transport_frame before emitting it. - const_reverse_iterator::operator!=() isn't defined in this version of gcc. - removed annoying HERE WE ARE CAAudioFile.h #warning. - removed unnecessary include of sndfile.h in session.h. - we don't want to set -march=i686 on the mac, so indent this if-statement so it's only run on linux. - DEBUG_STR() fails in the NDEBUG case, so wrap its use in an #ifndef NDEBUG ........ r6300 | trutkin | 2009-12-05 15:48:29 -0500 (Sat, 05 Dec 2009) | 2 lines remove old scons-style CXXFLAGS_FOO in favor of just CXXFLAGS ........ r6301 | trutkin | 2009-12-05 16:01:10 -0500 (Sat, 05 Dec 2009) | 8 lines clean up configure flags - removed useless --aubio and --syslibs flags. The syslibs value is ignored as we don't bring our own libraries with us anymoreand we use aubio automatically if it's available - added ways to turn off fpu_optimization and NLS - fixed compiling on the mac without fpu_optimization ........ r6302 | trutkin | 2009-12-05 18:12:46 -0500 (Sat, 05 Dec 2009) | 5 lines go back to prior uselib method for COREAUDIO, AUDIOUNIT, and GTKOSX - fixed compile of CoreAudioSource - re-did inclusion of coremidi_midiport.cc to depend on COREAUDIO presence ........ r6303 | trutkin | 2009-12-05 18:59:02 -0500 (Sat, 05 Dec 2009) | 5 lines fixed compiler warnings about classes with virtual member functions, but no virtual destructor. - Changed Metering to not use foo() = 0; to indicate it shouldn't be instantiated, but private: Metering(), which is more idiomatic. ........ r6304 | trutkin | 2009-12-05 19:25:41 -0500 (Sat, 05 Dec 2009) | 2 lines TOP_MENUBAR isn't used when building ardour.menus. Removed. ........ r6305 | trutkin | 2009-12-05 19:46:11 -0500 (Sat, 05 Dec 2009) | 5 lines fix some AudioUnit compile errors - update AudioUnit to use ChanCount - fix some namespacing issues in audio_unit.h ........ r6306 | trutkin | 2009-12-05 20:08:48 -0500 (Sat, 05 Dec 2009) | 2 lines make --extra-warn useful ........ r6308 | trutkin | 2009-12-05 22:59:42 -0500 (Sat, 05 Dec 2009) | 10 lines fix compiling/linking with --coreaudio - rearrange ardour_ui.h header in editor.cc to avoid conflict - midi++ depends on OSX as well as COREAUDIO - fixed including frameworks - tweaked --extra-warn again. it's kinda redundent with --strict - improved indentation in wscript - use #ifdef HAVE_COREMIDI, not #if HAVE_COREMIDI. #if isn't interchangable with #ifdef and won't work if HAVE_COREMIDI is defined with no value. ........ git-svn-id: svn://localhost/ardour2/branches/3.0@6310 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-12-05 23:35:48 -05:00
CoreAudioSource::CoreAudioSource (Session& s, const string& path, int chn, Flag flags)
: Source (s, DataType::AUDIO, path, Source::Flag (flags & ~(Writable|Removable|RemovableIfEmpty|RemoveAtDestroy))),
AudioFileSource (s, path,
Source::Flag (flags & ~(Writable|Removable|RemovableIfEmpty|RemoveAtDestroy)))
{
assert (Glib::file_test (_path, Glib::FILE_TEST_EXISTS));
existence_check ();
_channel = chn;
init_cafile ();
}
void
CoreAudioSource::init_cafile ()
{
/* note that we temporarily truncated _id at the colon */
try {
af.Open(_path.c_str());
CAStreamBasicDescription file_format (af.GetFileDataFormat());
n_channels = file_format.NumberChannels();
if (_channel >= n_channels) {
error << string_compose("CoreAudioSource: file only contains %1 channels; %2 is invalid as a channel number (%3)", n_channels, _channel, name()) << endmsg;
throw failed_constructor();
}
_length = timecnt_t (af.GetNumberFrames());
CAStreamBasicDescription client_format (file_format);
/* set canonial form (PCM, native float packed, 32 bit, with the correct number of channels
and interleaved (since we plan to deinterleave ourselves)
*/
client_format.SetCanonical(client_format.NumberChannels(), true);
af.SetClientFormat (client_format);
} catch (CAXException& cax) {
throw failed_constructor ();
}
}
CoreAudioSource::~CoreAudioSource ()
{
}
void
CoreAudioSource::close ()
{
af.Close ();
}
int
CoreAudioSource::safe_read (Sample* dst, samplepos_t start, samplecnt_t cnt, AudioBufferList& abl) const
{
samplecnt_t nread = 0;
while (nread < cnt) {
try {
af.Seek (start+nread);
} catch (CAXException& cax) {
error << string_compose("CoreAudioSource: %1 to %2 [%3] (%4)", cax.mOperation, start+nread, cax.mError, _name) << endmsg;
return -1;
}
UInt32 new_cnt = cnt - nread;
abl.mBuffers[0].mDataByteSize = new_cnt * n_channels * sizeof(Sample);
abl.mBuffers[0].mData = dst + nread;
try {
af.Read (new_cnt, &abl);
} catch (CAXException& cax) {
error << string_compose("CoreAudioSource: %1 [%2] (%3)", cax.mOperation, cax.mError, _name);
return -1;
}
if (new_cnt == 0) {
/* EOF */
if (start+cnt == _length.samples()) {
/* we really did hit the end */
nread = cnt;
}
break;
}
nread += new_cnt;
}
if (nread < cnt) {
return -1;
} else {
return 0;
}
}
samplecnt_t
CoreAudioSource::read_unlocked (Sample *dst, samplepos_t start, samplecnt_t cnt) const
{
samplecnt_t file_cnt;
AudioBufferList abl;
abl.mNumberBuffers = 1;
abl.mBuffers[0].mNumberChannels = n_channels;
if (start > _length.samples()) {
/* read starts beyond end of data, just memset to zero */
file_cnt = 0;
} else if (start + cnt > _length.samples()) {
/* read ends beyond end of data, read some, memset the rest */
file_cnt = _length.samples() - start;
} else {
/* read is entirely within data */
file_cnt = cnt;
}
if (file_cnt != cnt) {
sampleoffset_t delta = cnt - file_cnt;
memset (dst+file_cnt, 0, sizeof (Sample) * delta);
}
if (file_cnt) {
if (n_channels == 1) {
if (safe_read (dst, start, file_cnt, abl) == 0) {
return cnt;
}
return 0;
}
}
Sample* interleave_buf = get_interleave_buffer (file_cnt * n_channels);
if (safe_read (interleave_buf, start, file_cnt, abl) != 0) {
return 0;
}
Sample *ptr = interleave_buf + _channel;
/* stride through the interleaved data */
for (samplecnt_t n = 0; n < file_cnt; ++n) {
dst[n] = *ptr;
ptr += n_channels;
}
return cnt;
}
float
CoreAudioSource::sample_rate() const
{
CAStreamBasicDescription client_asbd;
try {
client_asbd = af.GetClientDataFormat ();
} catch (CAXException& cax) {
error << string_compose("CoreAudioSource: %1 (%2)", cax.mOperation, _name);
return 0.0;
}
return client_asbd.mSampleRate;
}
int
CoreAudioSource::update_header (samplepos_t, struct tm&, time_t)
{
return 0;
}
int
CoreAudioSource::get_soundfile_info (string path, SoundFileInfo& _info, string&)
{
#ifdef COREAUDIO105
FSRef ref;
#endif
ExtAudioFileRef af = 0;
UInt32 size;
CFStringRef name;
int ret = -1;
#ifdef COREAUDIO105
if (FSPathMakeRef ((UInt8*)path.c_str(), &ref, 0) != noErr) {
goto out;
}
if (ExtAudioFileOpen(&ref, &af) != noErr) {
goto out;
}
#else
CFURLRef url = CFURLCreateFromFileSystemRepresentation (kCFAllocatorDefault, (const UInt8*)path.c_str (), strlen (path.c_str ()), false);
OSStatus res = ExtAudioFileOpenURL(url, &af);
if (url) CFRelease (url);
if (res != noErr) {
goto out;
}
#endif
AudioStreamBasicDescription absd;
memset(&absd, 0, sizeof(absd));
size = sizeof(AudioStreamBasicDescription);
if (ExtAudioFileGetProperty (af, kExtAudioFileProperty_FileDataFormat, &size, &absd) != noErr) {
goto out;
}
_info.samplerate = absd.mSampleRate;
_info.channels = absd.mChannelsPerFrame;
_info.seekable = true;
size = sizeof(_info.length);
if (ExtAudioFileGetProperty(af, kExtAudioFileProperty_FileLengthFrames, &size, &_info.length) != noErr) {
goto out;
}
size = sizeof(CFStringRef);
if (AudioFormatGetProperty(kAudioFormatProperty_FormatName, sizeof(absd), &absd, &size, &name) != noErr) {
goto out;
}
_info.format_name = "";
if (absd.mFormatID == kAudioFormatLinearPCM) {
if (absd.mFormatFlags & kAudioFormatFlagIsBigEndian) {
_info.format_name += "big-endian";
} else {
_info.format_name += "little-endian";
}
char buf[32];
snprintf (buf, sizeof (buf), " %" PRIu32 " bit", absd.mBitsPerChannel);
_info.format_name += buf;
_info.format_name += '\n';
if (absd.mFormatFlags & kAudioFormatFlagIsFloat) {
_info.format_name += "float";
} else {
if (absd.mFormatFlags & kAudioFormatFlagIsSignedInteger) {
_info.format_name += "signed";
} else {
_info.format_name += "unsigned";
}
/* integer is typical, do not show it */
}
if (_info.channels > 1) {
if (absd.mFormatFlags & kAudioFormatFlagIsNonInterleaved) {
_info.format_name += " noninterleaved";
}
/* interleaved is the normal case, do not show it */
}
_info.format_name += ' ';
}
switch (absd.mFormatID) {
case kAudioFormatLinearPCM:
_info.format_name += "PCM";
break;
case kAudioFormatAC3:
_info.format_name += "AC3";
break;
case kAudioFormat60958AC3:
_info.format_name += "60958 AC3";
break;
case kAudioFormatMPEGLayer1:
_info.format_name += "MPEG-1";
break;
case kAudioFormatMPEGLayer2:
_info.format_name += "MPEG-2";
break;
case kAudioFormatMPEGLayer3:
_info.format_name += "MPEG-3";
break;
case kAudioFormatAppleIMA4:
_info.format_name += "IMA-4";
break;
case kAudioFormatMPEG4AAC:
_info.format_name += "AAC";
break;
case kAudioFormatMPEG4CELP:
_info.format_name += "CELP";
break;
case kAudioFormatMPEG4HVXC:
_info.format_name += "HVXC";
break;
case kAudioFormatMPEG4TwinVQ:
_info.format_name += "TwinVQ";
break;
/* these really shouldn't show up, but we should do something
somewhere else to make sure that doesn't happen. until
that is guaranteed, print something anyway.
*/
case kAudioFormatTimeCode:
_info.format_name += "timecode";
break;
case kAudioFormatMIDIStream:
_info.format_name += "MIDI";
break;
case kAudioFormatParameterValueStream:
_info.format_name += "parameter values";
break;
}
// XXX it would be nice to find a way to get this information if it exists
_info.timecode = 0;
ret = 0;
out:
ExtAudioFileDispose (af);
return ret;
}
void
CoreAudioSource::set_path (const string& p)
{
FileSource::set_path (p);
}