r370: Heroine Virutal's official release 1.2.1
[cinelerra_cv/mob.git] / hvirtual / cinelerra / cache.inc
blobc5b9074984695c7266b61f5ac2116037ea0a1ff8
1 #ifndef CACHE_INC
2 #define CACHE_INC
4 class CICache;
5 class CICacheItem;
7 // Minimum size of cache in bytes.
8 #define MIN_CACHE_SIZE 0x100000
9 // Maximum size of cache in bytes
10 #define MAX_CACHE_SIZE 0x7fffffffffffffffLL
11 // Minimum size for an item in the cache.  For audio files.
12 #define MIN_CACHEITEM_SIZE 0x100000
13 #endif