X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fqimage%2Fqimage_wrapper.h;h=7e1711ae95edd286dfc873473aa689e1e41af529;hb=3167af3ca5097baf38e9d48a2640618962f8c075;hp=0f2214d2a91f79a2ceefcfeb8bd1b541459dcefe;hpb=6ea63dd55257ba97df916aedc00711fcbb2f7906;p=melted diff --git a/src/modules/qimage/qimage_wrapper.h b/src/modules/qimage/qimage_wrapper.h index 0f2214d..7e1711a 100644 --- a/src/modules/qimage/qimage_wrapper.h +++ b/src/modules/qimage/qimage_wrapper.h @@ -1,6 +1,6 @@ /* * qimage_wrapper.h -- a QT/QImage based producer for MLT - * Copyright (C) 2003-2004 Ushodaya Enterprises Limited + * Copyright (C) 2006 Visual Media * Author: Charles Yates * * NB: This module is designed to be functionally equivalent to the @@ -26,6 +26,8 @@ #include +#include "config.h" + #ifdef __cplusplus extern "C" { #endif @@ -36,11 +38,18 @@ struct producer_qimage_s mlt_properties filenames; int count; int image_idx; + uint8_t *current_image; + uint8_t *current_alpha; + int current_width; + int current_height; }; typedef struct producer_qimage_s *producer_qimage; extern void refresh_qimage( mlt_frame, int width, int height ); +#ifdef USE_KDE +extern void init_qimage(); +#endif #ifdef __cplusplus }