fix bypassing plugins with sidechain i/o
[ardour.git] / libs / ardour / sndfileimportable.cc
index ffc894b2d4be61a9bb1c015f3c2d5c0fe56c6914..95b269a014a455111c02495b6ab5d78d0243d29d 100644 (file)
 #include <sndfile.h>
 #include <iostream>
 #include <cstring>
+#include <fcntl.h>
+
+#include <glib.h>
+#include "pbd/gstdio_compat.h"
+
 
 #include "pbd/error.h"
 #include "ardour/sndfileimportable.h"
 
-#include <fcntl.h>
-#include <glib/gstdio.h>
+#include <glibmm/convert.h>
 
 using namespace ARDOUR;
 using namespace std;
@@ -70,12 +74,12 @@ SndFileImportableSource::get_timecode_info (SNDFILE* sf, SF_BROADCAST_INFO* binf
 
 SndFileImportableSource::SndFileImportableSource (const string& path)
 {
-       int fd;
-       if ((-1) == (fd = g_open (path.c_str(), O_RDONLY, 0664)))
-               throw failed_constructor();
-
+       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_fd(fd, SFM_READ, &sf_info, true), sf_close);
+       in.reset (sf_open_fd (fd, SFM_READ, &sf_info, true), sf_close);
        if (!in) throw failed_constructor();
 
        SF_BROADCAST_INFO binfo;