summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/silentfilesource.h
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2008-06-02 05:02:28 +0000
committerDoug McLain <doug@nostar.net>2008-06-02 05:02:28 +0000
commit9c0d7d72d70082a54f823cd44c0ccda5da64bb6f (patch)
tree96ec400b83b8c1c06852b1936f684b5fbcd47a79 /libs/ardour/ardour/silentfilesource.h
parent2f3f697bb8e185eb43c2c50b4eefc2bcb937f269 (diff)
remove empty sigc++2 directory
git-svn-id: svn://localhost/ardour2/branches/3.0@3432 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/silentfilesource.h')
-rw-r--r--libs/ardour/ardour/silentfilesource.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/libs/ardour/ardour/silentfilesource.h b/libs/ardour/ardour/silentfilesource.h
deleted file mode 100644
index cbb123139a..0000000000
--- a/libs/ardour/ardour/silentfilesource.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- Copyright (C) 2007 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., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
-
-#ifndef __ardour_silentfilesource_h__
-#define __ardour_silentfilesource_h__
-
-#include <cstring>
-#include <ardour/audiofilesource.h>
-
-namespace ARDOUR {
-
-class SilentFileSource : public AudioFileSource {
- public:
- virtual ~SilentFileSource ();
-
- int update_header (nframes_t when, struct tm&, time_t) { return 0; }
- int flush_header () { return 0; }
- float sample_rate () const { return _sample_rate; }
-
- void set_length (nframes_t len);
-
- bool destructive() const { return false; }
- bool can_be_analysed() const { return false; }
-
- protected:
-
- float _sample_rate;
-
- SilentFileSource (Session&, const XMLNode&, nframes_t nframes, float sample_rate);
-
- friend class SourceFactory;
-
- nframes_t read_unlocked (Sample *dst, nframes_t start, nframes_t cnt) const {
- memset (dst, 0, sizeof (Sample) * cnt);
- return cnt;
- }
-
- nframes_t write_unlocked (Sample *dst, nframes_t cnt) { return 0; }
-
- void set_header_timeline_position () {}
-
- int read_peaks_with_fpp (PeakData *peaks, nframes_t npeaks, nframes_t start, nframes_t cnt, double samples_per_unit, nframes_t fpp) const {
- memset (peaks, 0, sizeof (PeakData) * npeaks);
- return 0;
- }
-
-};
-
-} // namespace ARDOUR
-
-#endif /* __ardour_audiofilesource_h__ */
-