fix (mostly) measure lines and click box text and meter markings
[ardour.git] / libs / ardour / ardour / coreaudio_source.h
1 /*
2     Copyright (C) 2000 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #ifndef __coreaudio_source_h__ 
22 #define __coreaudio_source_h__
23
24 #include <ardour/source.h>
25
26 #include <AudioToolbox/ExtendedAudioFile.h>
27
28 namespace ARDOUR {
29
30 class CoreAudioSource : public Source {
31   public:
32         CoreAudioSource (const string& path_plus_channel, bool build_peak = true);
33         CoreAudioSource (const XMLNode&);
34         ~CoreAudioSource ();
35
36         jack_nframes_t length() const { return _length; }
37         jack_nframes_t read (Sample *dst, jack_nframes_t start, jack_nframes_t cnt) const;
38         void           mark_for_remove() {} // we never remove external sndfiles 
39         string         peak_path(string audio_path);
40         string         old_peak_path(string audio_path);
41         string         path() const { return _path; }
42
43         static void set_peak_dir (string dir) { peak_dir = dir; }
44
45   private:
46         static string peak_dir;
47
48         ExtAudioFileRef*  af_ref;
49         uint16_t n_channels;
50
51         uint16_t channel;
52         mutable float *tmpbuf;
53         mutable jack_nframes_t tmpbufsize;
54         mutable PBD::Lock _tmpbuf_lock;
55         string  _path;
56
57         void init (const string &str, bool build_peak);
58         jack_nframes_t read_unlocked (Sample *dst, jack_nframes_t start, jack_nframes_t cnt) const;
59 };
60
61 }; /* namespace ARDOUR */
62
63 #endif /* __coreaudio_source_h__ */
64