Merged with trunk R846
[ardour.git] / libs / ardour / ardour / audio_track.h
1 /*
2     Copyright (C) 2002-2006 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 __ardour_audio_track_h__
22 #define __ardour_audio_track_h__
23
24 #include <ardour/track.h>
25
26 namespace ARDOUR {
27
28 class Session;
29 class AudioDiskstream;
30 class AudioPlaylist;
31 class RouteGroup;
32
33 class AudioTrack : public Track
34 {
35   public:
36         AudioTrack (Session&, string name, Route::Flag f = Route::Flag (0), TrackMode m = Normal);
37         AudioTrack (Session&, const XMLNode&);
38         ~AudioTrack ();
39
40         int roll (jack_nframes_t nframes, jack_nframes_t start_frame, jack_nframes_t end_frame, 
41                 jack_nframes_t offset, int declick, bool can_record, bool rec_monitors_input);
42         
43         int no_roll (jack_nframes_t nframes, jack_nframes_t start_frame, jack_nframes_t end_frame, 
44                 jack_nframes_t offset, bool state_changing, bool can_record, bool rec_monitors_input);
45         
46         int silent_roll (jack_nframes_t nframes, jack_nframes_t start_frame, jack_nframes_t end_frame, 
47                 jack_nframes_t offset, bool can_record, bool rec_monitors_input);
48
49         boost::shared_ptr<AudioDiskstream> audio_diskstream() const;
50
51         int use_diskstream (string name);
52         int use_diskstream (const PBD::ID& id);
53         
54         int export_stuff (BufferSet& bufs, jack_nframes_t nframes, jack_nframes_t end_frame);
55
56         void freeze (InterThreadInfo&);
57         void unfreeze ();
58
59         void bounce (InterThreadInfo&);
60         void bounce_range (jack_nframes_t start, jack_nframes_t end, InterThreadInfo&);
61
62         int set_state(const XMLNode& node);
63
64   protected:
65         XMLNode& state (bool full);
66
67         ChanCount n_process_buffers ();
68         
69   private:
70         int  set_diskstream (boost::shared_ptr<AudioDiskstream>, void *);
71         int  deprecated_use_diskstream_connections ();
72         void set_state_part_two ();
73         void set_state_part_three ();
74 };
75
76 } // namespace ARDOUR
77
78 #endif /* __ardour_audio_track_h__ */