]> git.sesse.net Git - mlt/blob - src/modules/qimage/qimage_wrapper.h
Cleanup license declarations and remove dv1394d references.
[mlt] / src / modules / qimage / qimage_wrapper.h
1 /*
2  * qimage_wrapper.h -- a QT/QImage based producer for MLT
3  * Copyright (C) 2006 Visual Media
4  * Author: Charles Yates <charles.yates@gmail.com>
5  *
6  * NB: This module is designed to be functionally equivalent to the 
7  * gtk2 image loading module so it can be used as replacement.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  */
23
24 #ifndef MLT_QIMAGE_WRAPPER
25 #define MLT_QIMAGE_WRAPPER
26
27 #include <framework/mlt.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 struct producer_qimage_s
34 {
35         struct mlt_producer_s parent;
36         mlt_properties filenames;
37         int count;
38         int image_idx;
39 };
40
41 typedef struct producer_qimage_s *producer_qimage;
42
43 extern void refresh_qimage( mlt_frame, int width, int height );
44
45 #ifdef __cplusplus
46 }
47 #endif
48
49 #endif