]> git.sesse.net Git - mlt/blob - src/modules/qimage/kdenlivetitle_wrapper.cpp
Remove exit()s that cause unexpected app failures.
[mlt] / src / modules / qimage / kdenlivetitle_wrapper.cpp
1 /*
2  * kdenlivetitle_wrapper.cpp -- kdenlivetitle wrapper
3  * Copyright (c) 2009 Marco Gittler <g.marco@freenet.de>
4  * Copyright (c) 2009 Jean-Baptiste Mardelle <jb@kdenlive.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20
21 #include "kdenlivetitle_wrapper.h"
22
23 #include <QtGui/QImage>
24 #include <QtGui/QPainter>
25 #include <QtCore/QDebug>
26 #include <QtGui/QApplication>
27 #include <QtCore/QMutex>
28 #include <QtGui/QGraphicsScene>
29 #include <QtGui/QGraphicsTextItem>
30 #include <QtSvg/QGraphicsSvgItem>
31 #include <QtSvg/QSvgRenderer>
32 #include <QtGui/QTextCursor>
33 #include <QtGui/QTextDocument>
34 #include <QtGui/QStyleOptionGraphicsItem>
35
36 #include <QtCore/QString>
37
38 #include <QtXml/QDomElement>
39 #include <QtCore/QRectF>
40 #include <QtGui/QColor>
41 #include <QtGui/QWidget>
42 #include <framework/mlt_log.h>
43
44 #if QT_VERSION >= 0x040600
45 #include <QtGui/QGraphicsEffect>
46 #include <QtGui/QGraphicsBlurEffect>
47 #include <QtGui/QGraphicsDropShadowEffect>
48 #endif
49
50 static QApplication *app = NULL;
51
52 class ImageItem: public QGraphicsItem
53 {
54 public:
55     ImageItem(QImage img)
56     {
57         m_img = img;
58     }
59     QImage m_img;
60
61
62 protected:
63
64 virtual QRectF boundingRect() const
65 {
66     return QRectF(0, 0, m_img.width(), m_img.height());
67 }
68
69 virtual void paint( QPainter *painter,
70                        const QStyleOptionGraphicsItem * /*option*/,
71                        QWidget* )
72
73     painter->setRenderHint(QPainter::SmoothPixmapTransform, true);
74     painter->drawImage(QPoint(), m_img);
75 }
76 };
77
78
79 QRectF stringToRect( const QString & s )
80 {
81
82         QStringList l = s.split( ',' );
83         if ( l.size() < 4 )
84                 return QRectF();
85         return QRectF( l.at( 0 ).toDouble(), l.at( 1 ).toDouble(), l.at( 2 ).toDouble(), l.at( 3 ).toDouble() ).normalized();
86 }
87
88 QColor stringToColor( const QString & s )
89 {
90         QStringList l = s.split( ',' );
91         if ( l.size() < 4 )
92                 return QColor();
93         return QColor( l.at( 0 ).toInt(), l.at( 1 ).toInt(), l.at( 2 ).toInt(), l.at( 3 ).toInt() );
94         ;
95 }
96 QTransform stringToTransform( const QString& s )
97 {
98         QStringList l = s.split( ',' );
99         if ( l.size() < 9 )
100                 return QTransform();
101         return QTransform(
102                    l.at( 0 ).toDouble(), l.at( 1 ).toDouble(), l.at( 2 ).toDouble(),
103                    l.at( 3 ).toDouble(), l.at( 4 ).toDouble(), l.at( 5 ).toDouble(),
104                    l.at( 6 ).toDouble(), l.at( 7 ).toDouble(), l.at( 8 ).toDouble()
105                );
106 }
107
108 static void qscene_delete( void *data )
109 {
110         QGraphicsScene *scene = ( QGraphicsScene * )data;
111         if (scene) delete scene;
112         scene = NULL;
113 }
114
115
116 void loadFromXml( mlt_producer producer, QGraphicsScene *scene, const char *templateXml, const char *templateText )
117 {
118         scene->clear();
119         mlt_properties producer_props = MLT_PRODUCER_PROPERTIES( producer );
120         QDomDocument doc;
121         QString data = QString::fromUtf8(templateXml);
122         QString replacementText = QString::fromUtf8(templateText);
123         doc.setContent(data);
124         QDomElement title = doc.documentElement();
125
126         // Check for invalid title
127         if ( title.isNull() || title.tagName() != "kdenlivetitle" ) return;
128         
129         // Check title locale
130         if ( title.hasAttribute( "LC_NUMERIC" ) ) {
131             QString locale = title.attribute( "LC_NUMERIC" );
132             QLocale::setDefault( locale );
133         }
134         
135         int originalWidth;
136         int originalHeight;
137         if ( title.hasAttribute("width") ) {
138             originalWidth = title.attribute("width").toInt();
139             originalHeight = title.attribute("height").toInt();
140             scene->setSceneRect(0, 0, originalWidth, originalHeight);
141         }
142         else {
143             originalWidth = scene->sceneRect().width();
144             originalHeight = scene->sceneRect().height();
145         }
146         if ( title.hasAttribute( "out" ) ) {
147             mlt_properties_set_position( producer_props, "_animation_out", title.attribute( "out" ).toDouble() );
148         }
149         else {
150             mlt_properties_set_position( producer_props, "_animation_out", mlt_producer_get_out( producer ) );
151         }
152         
153         mlt_properties_set_int( producer_props, "_original_width", originalWidth );
154         mlt_properties_set_int( producer_props, "_original_height", originalHeight );
155
156         QDomNode node;
157         QDomNodeList items = title.elementsByTagName("item");
158         for ( int i = 0; i < items.count(); i++ )
159         {
160                 QGraphicsItem *gitem = NULL;
161                 node = items.item( i );
162                 QDomNamedNodeMap nodeAttributes = node.attributes();
163                 int zValue = nodeAttributes.namedItem( "z-index" ).nodeValue().toInt();
164                 if ( zValue > -1000 )
165                 {
166                         if ( nodeAttributes.namedItem( "type" ).nodeValue() == "QGraphicsTextItem" )
167                         {
168                                 QDomNamedNodeMap txtProperties = node.namedItem( "content" ).attributes();
169                                 QFont font( txtProperties.namedItem( "font" ).nodeValue() );
170                                 QDomNode propsNode = txtProperties.namedItem( "font-bold" );
171                                 if ( !propsNode.isNull() )
172                                 {
173                                         // Old: Bold/Not bold.
174                                         font.setBold( propsNode.nodeValue().toInt() );
175                                 }
176                                 else
177                                 {
178                                         // New: Font weight (QFont::)
179                                         font.setWeight( txtProperties.namedItem( "font-weight" ).nodeValue().toInt() );
180                                 }
181                                 font.setItalic( txtProperties.namedItem( "font-italic" ).nodeValue().toInt() );
182                                 font.setUnderline( txtProperties.namedItem( "font-underline" ).nodeValue().toInt() );
183                                 // Older Kdenlive version did not store pixel size but point size
184                                 if ( txtProperties.namedItem( "font-pixel-size" ).isNull() )
185                                 {
186                                         QFont f2;
187                                         f2.setPointSize( txtProperties.namedItem( "font-size" ).nodeValue().toInt() );
188                                         font.setPixelSize( QFontInfo( f2 ).pixelSize() );
189                                 }
190                                 else
191                                         font.setPixelSize( txtProperties.namedItem( "font-pixel-size" ).nodeValue().toInt() );
192                                 QColor col( stringToColor( txtProperties.namedItem( "font-color" ).nodeValue() ) );
193                                 QString text = node.namedItem( "content" ).firstChild().nodeValue();
194                                 if ( !replacementText.isEmpty() )
195                                 {
196                                         text = text.replace( "%s", replacementText );
197                                 }
198                                 QGraphicsTextItem *txt = scene->addText(text, font);
199                                 if (txtProperties.namedItem("font-outline").nodeValue().toDouble()>0.0){
200                                         qRegisterMetaType<QTextCursor>( "QTextCursor" );
201                                         QTextCursor cursor(txt->document());
202                                         cursor.select(QTextCursor::Document);
203                                         QTextCharFormat format;
204                                         format.setTextOutline(
205                                                         QPen(QColor( stringToColor( txtProperties.namedItem( "font-outline-color" ).nodeValue() ) ),
206                                                         txtProperties.namedItem("font-outline").nodeValue().toDouble(),
207                                                         Qt::SolidLine,Qt::RoundCap,Qt::RoundJoin)
208                                         );
209                                         format.setForeground(QBrush(col));
210
211                                         cursor.mergeCharFormat(format);
212                                 } else {
213                                         txt->setDefaultTextColor( col );
214                                 }
215                                 
216                                 // Effects
217                                 if (!txtProperties.namedItem( "typewriter" ).isNull()) {
218                                         // typewriter effect
219                                         mlt_properties_set_int( producer_props, "_animated", 1 );
220                                         QStringList effetData = QStringList() << "typewriter" << text << txtProperties.namedItem( "typewriter" ).nodeValue();
221                                         txt->setData(0, effetData);
222                                 }
223                                 
224                                 if ( txtProperties.namedItem( "alignment" ).isNull() == false )
225                                 {
226                                         txt->setTextWidth( txt->boundingRect().width() );
227                                         QTextOption opt = txt->document()->defaultTextOption ();
228                                         opt.setAlignment(( Qt::Alignment ) txtProperties.namedItem( "alignment" ).nodeValue().toInt() );
229                                         txt->document()->setDefaultTextOption (opt);
230                                 }
231                                         if ( !txtProperties.namedItem( "kdenlive-axis-x-inverted" ).isNull() )
232                                 {
233                                         //txt->setData(OriginXLeft, txtProperties.namedItem("kdenlive-axis-x-inverted").nodeValue().toInt());
234                                 }
235                                 if ( !txtProperties.namedItem( "kdenlive-axis-y-inverted" ).isNull() )
236                                 {
237                                         //txt->setData(OriginYTop, txtProperties.namedItem("kdenlive-axis-y-inverted").nodeValue().toInt());
238                                 }
239                                         gitem = txt;
240                         }
241                         else if ( nodeAttributes.namedItem( "type" ).nodeValue() == "QGraphicsRectItem" )
242                         {
243                                 QString rect = node.namedItem( "content" ).attributes().namedItem( "rect" ).nodeValue();
244                                 QString br_str = node.namedItem( "content" ).attributes().namedItem( "brushcolor" ).nodeValue();
245                                 QString pen_str = node.namedItem( "content" ).attributes().namedItem( "pencolor" ).nodeValue();
246                                 double penwidth = node.namedItem( "content" ).attributes().namedItem( "penwidth") .nodeValue().toDouble();
247                                 QGraphicsRectItem *rec = scene->addRect( stringToRect( rect ), QPen( QBrush( stringToColor( pen_str ) ), penwidth, Qt::SolidLine, Qt::SquareCap, Qt::RoundJoin ), QBrush( stringToColor( br_str ) ) );
248                                 gitem = rec;
249                         }
250                         else if ( nodeAttributes.namedItem( "type" ).nodeValue() == "QGraphicsPixmapItem" )
251                         {
252                                 const QString url = node.namedItem( "content" ).attributes().namedItem( "url" ).nodeValue();
253                                 const QString base64 = items.item(i).namedItem("content").attributes().namedItem("base64").nodeValue();
254                                 QImage img;
255                                 if (base64.isEmpty()){
256                                         img.load(url);
257                                 }else{
258                                         img.loadFromData(QByteArray::fromBase64(base64.toAscii()));
259                                 }
260                                 ImageItem *rec = new ImageItem(img);
261                                 scene->addItem( rec );
262                                 gitem = rec;
263                         }
264                         else if ( nodeAttributes.namedItem( "type" ).nodeValue() == "QGraphicsSvgItem" )
265                         {
266                                 QString url = items.item(i).namedItem("content").attributes().namedItem("url").nodeValue();
267                                 QString base64 = items.item(i).namedItem("content").attributes().namedItem("base64").nodeValue();
268                                 QGraphicsSvgItem *rec = NULL;
269                                 if (base64.isEmpty()){
270                                         rec = new QGraphicsSvgItem(url);
271                                 }else{
272                                         rec = new QGraphicsSvgItem();
273                                         QSvgRenderer *renderer= new QSvgRenderer(QByteArray::fromBase64(base64.toAscii()), rec );
274                                         rec->setSharedRenderer(renderer);
275                                 }
276                                 if (rec){
277                                         scene->addItem(rec);
278                                         gitem = rec;
279                                 }
280                         }
281                 }
282                 //pos and transform
283                 if ( gitem )
284                 {
285                         QPointF p( node.namedItem( "position" ).attributes().namedItem( "x" ).nodeValue().toDouble(),
286                                    node.namedItem( "position" ).attributes().namedItem( "y" ).nodeValue().toDouble() );
287                         gitem->setPos( p );
288                         gitem->setTransform( stringToTransform( node.namedItem( "position" ).firstChild().firstChild().nodeValue() ) );
289                         int zValue = nodeAttributes.namedItem( "z-index" ).nodeValue().toInt();
290                         gitem->setZValue( zValue );
291
292 #if QT_VERSION >= 0x040600
293                         // effects
294                         QDomNode eff = items.item(i).namedItem("effect");
295                         if (!eff.isNull()) {
296                                 QDomElement e = eff.toElement();
297                                 if (e.attribute("type") == "blur") {
298                                         QGraphicsBlurEffect *blur = new QGraphicsBlurEffect();
299                                         blur->setBlurRadius(e.attribute("blurradius").toInt());
300                                         gitem->setGraphicsEffect(blur);
301                                 }
302                                 else if (e.attribute("type") == "shadow") {
303                                         QGraphicsDropShadowEffect *shadow = new QGraphicsDropShadowEffect();
304                                         shadow->setBlurRadius(e.attribute("blurradius").toInt());
305                                         shadow->setOffset(e.attribute("xoffset").toInt(), e.attribute("yoffset").toInt());
306                                         gitem->setGraphicsEffect(shadow);
307                                 }
308                         }
309 #endif
310                 }
311         }
312
313         QDomNode n = title.firstChildElement("background");
314         if (!n.isNull()) {
315                 QColor color = QColor( stringToColor( n.attributes().namedItem( "color" ).nodeValue() ) );
316                 if (color.alpha() > 0) {
317                         QGraphicsRectItem *rec = scene->addRect(0, 0, scene->width(), scene->height() , QPen( Qt::NoPen ), QBrush( color ) );
318                         rec->setZValue(-1100);
319                 }
320           
321         }
322
323         QString startRect;
324         n = title.firstChildElement( "startviewport" );
325         // Check if node exists, if it has an x attribute, it is an old version title, don't use viewport
326         if (!n.isNull() && !n.toElement().hasAttribute("x"))
327         {
328                 startRect = n.attributes().namedItem( "rect" ).nodeValue();
329         }
330         n = title.firstChildElement( "endviewport" );
331         // Check if node exists, if it has an x attribute, it is an old version title, don't use viewport
332         if (!n.isNull() && !n.toElement().hasAttribute("x"))
333         {
334                 QString rect = n.attributes().namedItem( "rect" ).nodeValue();
335                 if (startRect != rect)
336                         mlt_properties_set( producer_props, "_endrect", rect.toUtf8().data() );
337         }
338         if (!startRect.isEmpty()) {
339                 mlt_properties_set( producer_props, "_startrect", startRect.toUtf8().data() );
340         }
341         return;
342 }
343
344
345 void drawKdenliveTitle( producer_ktitle self, mlt_frame frame, int width, int height, double position, int force_refresh )
346 {
347         // Obtain the producer 
348         mlt_producer producer = &self->parent;
349         mlt_profile profile = mlt_service_profile ( MLT_PRODUCER_SERVICE( producer ) ) ;
350         mlt_properties producer_props = MLT_PRODUCER_PROPERTIES( producer );
351
352         // Obtain properties of frame
353         mlt_properties properties = MLT_FRAME_PROPERTIES( frame );
354         
355         pthread_mutex_lock( &self->mutex );
356         
357         // Check if user wants us to reload the image
358         if ( mlt_properties_get( producer_props, "_animated" ) != NULL || force_refresh == 1 || width != self->current_width || height != self->current_height || mlt_properties_get( producer_props, "_endrect" ) != NULL )
359         {
360                 //mlt_cache_item_close( self->image_cache );
361                 self->current_image = NULL;
362                 mlt_properties_set_data( producer_props, "cached_image", NULL, 0, NULL, NULL );
363                 mlt_properties_set_int( producer_props, "force_reload", 0 );
364         }
365         
366         if (self->current_image == NULL) {
367                 // restore QGraphicsScene
368                 QGraphicsScene *scene = static_cast<QGraphicsScene *> (mlt_properties_get_data( producer_props, "qscene", NULL ));
369
370                 if ( force_refresh == 1 && scene )
371                 {
372                         scene = NULL;
373                         mlt_properties_set_data( producer_props, "qscene", NULL, 0, NULL, NULL );
374                 }
375
376                 if ( scene == NULL )
377                 {
378                         int argc = 1;
379                         char* argv[1];
380                         argv[0] = (char*) "xxx";
381                         
382                         // Warning: all Qt graphic objects (QRect, ...) must be initialized AFTER 
383                         // the QApplication is created, otherwise their will be NULL
384                         
385                         if ( app == NULL ) {
386                                 if ( qApp ) {
387                                         app = qApp;
388                                 }
389                                 else {
390 #ifdef linux
391                                         if ( getenv("DISPLAY") == 0 )
392                                         {
393                                                 mlt_log_panic( MLT_PRODUCER_SERVICE( producer ), "Error, cannot render titles without an X11 environment.\nPlease either run melt from an X session or use a fake X server like xvfb:\nxvfb-run -a melt (...)\n" );
394                                                 pthread_mutex_unlock( &self->mutex );
395                                                 return;
396                                         }
397 #endif
398                                         app = new QApplication( argc, argv );                           
399                                         const char *localename = mlt_properties_get_lcnumeric( MLT_SERVICE_PROPERTIES( MLT_PRODUCER_SERVICE( producer ) ) );
400                                         QLocale::setDefault( QLocale( localename ) );
401                                 }
402                         }
403                         scene = new QGraphicsScene();
404                         scene->setItemIndexMethod( QGraphicsScene::NoIndex );
405                         scene->setSceneRect(0, 0, mlt_properties_get_int( properties, "width" ), mlt_properties_get_int( properties, "height" ));
406                         if ( mlt_properties_get( producer_props, "resource" ) && mlt_properties_get( producer_props, "resource" )[0] != '\0' )
407                         {
408                                 // The title has a resource property, so we read all properties from the resource.
409                                 // Do not serialize the xmldata
410                                 loadFromXml( producer, scene, mlt_properties_get( producer_props, "_xmldata" ), mlt_properties_get( producer_props, "templatetext" ) );
411                         }
412                         else
413                         {
414                                 // The title has no resource, all data should be serialized
415                                 loadFromXml( producer, scene, mlt_properties_get( producer_props, "xmldata" ), mlt_properties_get( producer_props, "templatetext" ) );
416                           
417                         }
418                         mlt_properties_set_data( producer_props, "qscene", scene, 0, ( mlt_destructor )qscene_delete, NULL );
419                 }
420                 
421                 QRectF start = stringToRect( QString( mlt_properties_get( producer_props, "_startrect" ) ) );
422                 QRectF end = stringToRect( QString( mlt_properties_get( producer_props, "_endrect" ) ) );
423         
424                 int originalWidth = mlt_properties_get_int( producer_props, "_original_width" );
425                 int originalHeight= mlt_properties_get_int( producer_props, "_original_height" );
426                 const QRectF source( 0, 0, width, height );
427                 if (start.isNull()) {
428                     start = QRectF( 0, 0, originalWidth, originalHeight );
429                 }
430
431                 // Effects
432                 QList <QGraphicsItem *> items = scene->items();
433                 QGraphicsTextItem *titem = NULL;
434                 for (int i = 0; i < items.count(); i++) {
435                     titem = static_cast <QGraphicsTextItem*> ( items.at( i ) );
436                     if (titem && !titem->data( 0 ).isNull()) {
437                             QStringList params = titem->data( 0 ).toStringList();
438                             if (params.at( 0 ) == "typewriter" ) {
439                                     // typewriter effect has 2 param values:
440                                     // the keystroke delay and a start offset, both in frames
441                                     QStringList values = params.at( 2 ).split( ";" );
442                                     int interval = qMax( 0, ( ( int ) position - values.at( 1 ).toInt()) / values.at( 0 ).toInt() );
443                                         qRegisterMetaType<QTextCursor>( "QTextCursor" );
444                                         QTextCursor cursor = titem->textCursor();
445                                     cursor.movePosition(QTextCursor::EndOfBlock);
446                                     // get the font format
447                                     QTextCharFormat format = cursor.charFormat();
448                                     cursor.select(QTextCursor::Document);
449                                     QString txt = params.at( 1 ).left( interval );
450                                     // If the string to insert is empty, insert a space so that we don't loose
451                                     // formatting infos for the next iterations
452                                     cursor.insertText(txt.isEmpty() ? " " : txt, format);
453                             }
454                     }
455                 }
456
457                 //must be extracted from kdenlive title
458                 QImage img( width, height, QImage::Format_ARGB32 );
459                 img.fill( 0 );
460                 QPainter p1;
461                 p1.begin( &img );
462                 p1.setRenderHints( QPainter::Antialiasing | QPainter::TextAntialiasing | QPainter::HighQualityAntialiasing );
463                 //| QPainter::SmoothPixmapTransform );
464                 mlt_position anim_out = mlt_properties_get_position( producer_props, "_animation_out" );
465
466                 if (end.isNull())
467                 {
468                         scene->render( &p1, source, start, Qt::IgnoreAspectRatio );
469                 }
470                 else if ( position > anim_out ) {
471                         scene->render( &p1, source, end, Qt::IgnoreAspectRatio );
472                 }
473                 else {
474                         double percentage = 0;
475                         if ( position && anim_out )
476                                 percentage = position / anim_out;
477                         QPointF topleft = start.topLeft() + ( end.topLeft() - start.topLeft() ) * percentage;
478                         QPointF bottomRight = start.bottomRight() + ( end.bottomRight() - start.bottomRight() ) * percentage;
479                         const QRectF r1( topleft, bottomRight );
480                         scene->render( &p1, source, r1, Qt::IgnoreAspectRatio );
481                         if ( profile && !profile->progressive ){
482                                 int line=0;
483                                 double percentage_next_filed    = ( position + 0.5 ) / anim_out;
484                                 QPointF topleft_next_field = start.topLeft() + ( end.topLeft() - start.topLeft() ) * percentage_next_filed;
485                                 QPointF bottomRight_next_field = start.bottomRight() + ( end.bottomRight() - start.bottomRight() ) * percentage_next_filed;
486                                 const QRectF r2( topleft_next_field, bottomRight_next_field );
487                                 QImage img1( width, height, QImage::Format_ARGB32 );
488                                 img1.fill( 0 );
489                                 QPainter p2;
490                                 p2.begin(&img1);
491                                 p2.setRenderHints( QPainter::Antialiasing | QPainter::TextAntialiasing | QPainter::HighQualityAntialiasing );
492                                 scene->render(&p2,source,r2,  Qt::IgnoreAspectRatio );
493                                 p2.end();
494                                 int next_field_line = (  mlt_properties_get_int( producer_props, "top_field_first" ) ? 1 : 0 );
495                                 for (line = next_field_line ;line<height;line+=2){
496                                                 memcpy(img.scanLine(line),img1.scanLine(line),img.bytesPerLine());
497                                 }
498
499                         }
500                 }
501                 p1.end();
502
503                 int size = width * height * 4;
504                 uint8_t *pointer=img.bits();
505                 QRgb* src = ( QRgb* ) pointer;
506                 self->current_image = ( uint8_t * )mlt_pool_alloc( size );
507                 uint8_t *dst = self->current_image;
508         
509                 for ( int i = 0; i < width * height * 4; i += 4 )
510                 {
511                         *dst++=qRed( *src );
512                         *dst++=qGreen( *src );
513                         *dst++=qBlue( *src );
514                         *dst++=qAlpha( *src );
515                         src++;
516                 }
517
518                 mlt_properties_set_data( producer_props, "cached_image", self->current_image, size, mlt_pool_release, NULL );
519                 self->current_width = width;
520                 self->current_height = height;
521         }
522
523         pthread_mutex_unlock( &self->mutex );
524         mlt_properties_set_int( properties, "width", self->current_width );
525         mlt_properties_set_int( properties, "height", self->current_height );
526 }
527
528