Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / plugins / threshold / histogramengine.inc
blobbf9d5b60af6bff04de7014ac95dc17185c19b05d
1 #ifndef HISTOGRAMENGINE_INC
2 #define HISTOGRAMENGINE_INC
4 // Channels
5 #define HISTOGRAM_RED 0
6 #define HISTOGRAM_GREEN 1
7 #define HISTOGRAM_BLUE 2
8 #define HISTOGRAM_ALPHA 3
9 #define HISTOGRAM_VALUE 4
11 // Number of slots
12 #define HISTOGRAM_RANGE 0x13333
14 // Range
15 #define HISTOGRAM_MIN -0.1
16 #define HISTOGRAM_MAX 1.1
18 class HistogramPackage;
19 class HistogramUnit;
20 class HistogramEngine;
22 #endif