r1006: configure: Use libx264_pic instead of libx264 if available.
[cinelerra_cv/mob.git] / cinelerra / tracklist.h
blob7c9eccb34a8b2df547cefb134e83a64b8a3901dd
1 #ifndef TRACKLIST_H
2 #define TRACKLIST_H
4 #include "patchbay.h"
5 #include "arraylist.h"
6 #include "tracks.h"
8 class TrackList : public ArrayList<Track*>
10 public:
11 TrackList(MWindow *mwindow);
13 get_playable_audio(long position, int reverse);
14 get_playable_video(long position, int reverse);
16 private:
17 get_playable_type(long position, int reverse, int data_type);
18 get_recordable_type(int data_type);
19 MWindow *mwindow;
24 #endif