X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fsndfile_manager.cc;h=98385156820340bb4ec2944b5bd56a0651c0a567;hb=b6587ad160aec275004ea875846112b8d4724d3d;hp=5f08e634d68592ef07a4e9663992982c342c07be;hpb=f7dae62903ad034bf42683001f235b84bf3b37f4;p=ardour.git diff --git a/libs/pbd/sndfile_manager.cc b/libs/pbd/sndfile_manager.cc index 5f08e634d6..9838515682 100644 --- a/libs/pbd/sndfile_manager.cc +++ b/libs/pbd/sndfile_manager.cc @@ -17,6 +17,10 @@ */ +/** @file libs/pbd/sndfile_manager.cc + * @brief A FileDescriptor for files opened using libsndfile. + */ + #include #include #include @@ -31,15 +35,15 @@ using namespace std; using namespace PBD; -/** @param n Filename. - * @param w true to open writeable, otherwise false. - * @param i SF_INFO for the file. +/** @param file_name Filename. + * @param writeable true to open writeable, otherwise false. + * @param info SF_INFO for the file. */ -SndFileDescriptor::SndFileDescriptor (string const & n, bool w, SF_INFO* i) - : FileDescriptor (n, w) +SndFileDescriptor::SndFileDescriptor (string const & file_name, bool writeable, SF_INFO* info) + : FileDescriptor (file_name, writeable) , _sndfile (0) - , _info (i) + , _info (info) { manager()->add (this); }