X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fsndfileimportable.cc;h=95b269a014a455111c02495b6ab5d78d0243d29d;hb=37961a6bbe1b5be2df66844a71890ca1d50757dd;hp=5ccab2c0d281ec6367e6bace74940180c9bbbda9;hpb=4f6f7f45f6e16820b4a3a8d886485dfdbccd6851;p=ardour.git diff --git a/libs/ardour/sndfileimportable.cc b/libs/ardour/sndfileimportable.cc index 5ccab2c0d2..95b269a014 100644 --- a/libs/ardour/sndfileimportable.cc +++ b/libs/ardour/sndfileimportable.cc @@ -20,10 +20,17 @@ #include #include #include +#include + +#include +#include "pbd/gstdio_compat.h" + #include "pbd/error.h" #include "ardour/sndfileimportable.h" +#include + using namespace ARDOUR; using namespace std; @@ -67,8 +74,12 @@ SndFileImportableSource::get_timecode_info (SNDFILE* sf, SF_BROADCAST_INFO* binf SndFileImportableSource::SndFileImportableSource (const string& path) { + int fd = g_open (path.c_str (), O_RDONLY, 0444); + if (fd == -1) { + throw failed_constructor (); + } memset(&sf_info, 0 , sizeof(sf_info)); - in.reset( sf_open(path.c_str(), SFM_READ, &sf_info), sf_close); + in.reset (sf_open_fd (fd, SFM_READ, &sf_info, true), sf_close); if (!in) throw failed_constructor(); SF_BROADCAST_INFO binfo;