producer_pixbuf.c: enhance pixbuf producer to use new mlt_cache (kdenlive-575)
[melted] / 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 #include "config.h"
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 struct producer_qimage_s
36 {
37 struct mlt_producer_s parent;
38 mlt_properties filenames;
39 int count;
40 int image_idx;
41 uint8_t *current_image;
42 uint8_t *current_alpha;
43 int current_width;
44 int current_height;
45 };
46
47 typedef struct producer_qimage_s *producer_qimage;
48
49 extern void refresh_qimage( mlt_frame, int width, int height );
50 #ifdef USE_KDE
51 extern void init_qimage();
52 #endif
53
54 #ifdef __cplusplus
55 }
56 #endif
57
58 #endif