]> git.sesse.net Git - kdenlive/blob - src/definitions.h
20ea0ecc7b0bb84af45cf36b7a9858184cb8e35b
[kdenlive] / src / definitions.h
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #ifndef DEFINITIONS_H
22 #define DEFINITIONS_H
23
24 #define FRAME_SIZE 90
25 #define MAXCLIPDURATION 15000
26
27 enum OPERATIONTYPE { NONE = 0, MOVE = 1, RESIZESTART = 2, RESIZEEND = 3, FADEIN = 4, FADEOUT = 5, TRANSITIONSTART = 6, TRANSITIONEND = 7};
28 enum CLIPTYPE { UNKNOWN = 0, AUDIO = 1, VIDEO = 2, AV = 3, COLOR = 4, IMAGE = 5, TEXT = 6, SLIDESHOW = 7, VIRTUAL = 8, PLAYLIST = 9};
29 enum GRAPHICSRECTITEM { AVWIDGET = 70000 , LABELWIDGET , TRANSITIONWIDGET };
30
31 enum TRANSITIONTYPE {
32     /** TRANSITIONTYPE: between 0-99: video trans, 100-199: video+audio trans, 200-299: audio trans */
33     LUMA_TRANSITION = 0,
34     COMPOSITE_TRANSITION = 1,
35     PIP_TRANSITION = 2,
36     LUMAFILE_TRANSITION = 3,
37     MIX_TRANSITION = 200
38 };
39
40 enum TRACKTYPE { AUDIOTRACK = 0, VIDEOTRACK = 1 };
41
42 struct TrackInfo {
43     TRACKTYPE type;
44     bool isMute;
45     bool isBlind;
46 };
47
48 struct MltVideoProfile {
49     QString path;
50     QString description;
51     int frame_rate_num;
52     int frame_rate_den;
53     int width;
54     int height;
55     bool progressive;
56     int sample_aspect_num;
57     int sample_aspect_den;
58     int display_aspect_num;
59     int display_aspect_den;
60 };
61
62 #endif