]> git.sesse.net Git - vlc/blob - modules/video_filter/atmo/AtmoCalculations.h
Don't mix up malloc and delete.
[vlc] / modules / video_filter / atmo / AtmoCalculations.h
1 /*
2  * AtmoCalculations.h: see calculations.h of the linux version... one to one copy
3  * calculations.h: calculations needed by the input devices
4  *
5  * See the README.txt file for copyright information and how to reach the author(s).
6  *
7  * $Id$
8  */
9
10 #ifndef _AtmoCalculations_h_
11 #define _AtmoCalculations_h_
12
13 #include "AtmoDefs.h"
14 #include "AtmoConfig.h"
15
16
17 tColorPacket CalcColorsAnalyzeHSV(CAtmoConfig *pAtmoConfig, tHSVColor *HSV_Img);
18
19 tHSVColor RGB2HSV(tRGBColor color);
20 tRGBColor HSV2RGB(tHSVColor color);
21
22 #endif