record batch dir path fix, handle yuv in gl masking, sync up maskengine/playback3d...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / wavecache.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef WAVECACHE_H
23 #define WAVECACHE_H
24
25
26
27 // Store audio waveform fragments for drawing.
28 #include "cachebase.h"
29
30
31 class WaveCacheItem : public CacheItemBase
32 {
33 public:
34         WaveCacheItem();
35         ~WaveCacheItem();
36
37         int get_size();
38
39         int channel;
40         int indexable_id;
41 // End sample in asset samplerate.  Starting point is CacheItemBase::position
42         int64_t end;
43         double high;
44         double low;
45 };
46
47
48
49
50
51 class WaveCache : public CacheBase
52 {
53 public:
54         WaveCache();
55         ~WaveCache();
56
57 // Returns the first item on or after the start argument or 0 if none found.
58         WaveCacheItem* get_wave(int indexable_id,
59                 int channel,
60                 int64_t start,
61                 int64_t end);
62 // Put waveform segment into cache
63         void put_wave(Indexable *indexable,
64                 int channel,
65                 int64_t start,
66                 int64_t end,
67                 double high,
68                 double low);
69 };
70
71
72
73 #endif