1 /***************************************************************************
2  *                                                                         *
3  *   This program is free software; you can redistribute it and/or modify  *
4  *   it under the terms of the GNU General Public License as published by  *
5  *   the Free Software Foundation; either version 2 of the License, or     *
6  *   (at your option) any later version.                                   *
7  *                                                                         *
8  ***************************************************************************/
9 
10 #ifndef ADM_VIDFADE_PARAM_H
11 #define ADM_VIDFADE_PARAM_H
12 
13 typedef struct VIDFADE_PARAM
14 {
15   uint32_t startFade;
16   uint32_t endFade;
17   uint32_t inOut; //0 Out 1 In
18   uint32_t toBlack; // =1 else fade to endFrame
19 }VIDFADE_PARAM;
20 
21 
22 
23 #endif
24