Subversion Repositories filter_foundry

Rev

Rev 396 | Rev 444 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 396 Rev 439
Line 16... Line 16...
16
    You should have received a copy of the GNU General Public License
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
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
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
*/
19
*/
20
 
20
 
-
 
21
#ifndef PARM_H_
-
 
22
#define PARM_H_
-
 
23
 
21
// Reverse-Engineering of Filter Factory for Photoshop by Alex Hunter (7/1999)
24
// Reverse-Engineering of Filter Factory for Photoshop by Alex Hunter (7/1999)
22
// Reverse-Engineering of Filter/Transition Factory for Premiere by Daniel Marschall (1/2019)
25
// Reverse-Engineering of Filter/Transition Factory for Premiere by Daniel Marschall (1/2019)
23
 
26
 
24
#define PARM_SIZE/*_PHOTOSHOP*/  0x2068 // Photoshop FF and Filter Foundry since 1.7
27
#define PARM_SIZE/*_PHOTOSHOP*/  0x2068 // Photoshop FF and Filter Foundry since 1.7
25
#define PARM_SIZE_PREMIERE       0x206C // Premiere FF/TF
28
#define PARM_SIZE_PREMIERE       0x206C // Premiere FF/TF
Line 120... Line 123...
120
        char szCtl[8][256];      // 8 control labels
123
        char szCtl[8][256];      // 8 control labels
121
        char szFormula[4][1024]; // 4 channel formulas; in Premiere: (b,g,r,a) or (-,-,-,r=g=b=a) in single-expression-mode
124
        char szFormula[4][1024]; // 4 channel formulas; in Premiere: (b,g,r,a) or (-,-,-,r=g=b=a) in single-expression-mode
122
} PARM_T_PREMIERE;
125
} PARM_T_PREMIERE;
123
 
126
 
124
#endif
127
#endif
-
 
128
 
-
 
129
#endif