-
Notifications
You must be signed in to change notification settings - Fork 368
Expand file tree
/
Copy pathqimage_wrapper.cpp
More file actions
428 lines (379 loc) · 16.2 KB
/
Copy pathqimage_wrapper.cpp
File metadata and controls
428 lines (379 loc) · 16.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
/*
* qimage_wrapper.cpp -- a Qt/QImage based producer for MLT
* Copyright (C) 2006-2023 Meltytech, LLC
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "qimage_wrapper.h"
#include "common.h"
#ifdef USE_KDE4
#include <kcomponentdata.h>
#endif
#include <QDir>
#include <QFileInfo>
#include <QImage>
#include <QImageReader>
#include <QMovie>
#include <QMutex>
#include <QSysInfo>
#include <QTemporaryFile>
#include <QtEndian>
#ifdef USE_EXIF
#include <libexif/exif-data.h>
#include <QTransform>
#endif
#include <cmath>
#include <sys/stat.h>
#include <sys/types.h>
#ifndef _MSC_VER
#include <unistd.h>
#endif
extern "C" {
#include <framework/mlt_cache.h>
#include <framework/mlt_pool.h>
#ifdef USE_KDE4
static KComponentData *instance = 0L;
#endif
static void qimage_delete(void *data)
{
QImage *image = (QImage *) data;
delete image;
image = NULL;
#if defined(USE_KDE4)
delete instance;
instance = 0L;
#endif
}
/// Returns frame count or 0 on error
int init_qimage(mlt_producer producer, const char *filename)
{
if (!createQApplicationIfNeeded(MLT_PRODUCER_SERVICE(producer))) {
return 0;
}
QImageReader reader;
reader.setDecideFormatFromContent(true);
reader.setFileName(filename);
if (reader.canRead() && reader.imageCount() > 1) {
return reader.format() == "webp" ? reader.imageCount() : 0;
}
#ifdef USE_KDE4
if (!instance) {
instance = new KComponentData("qimage_prod");
}
#endif
return 1;
}
int refresh_qimage(producer_qimage self, mlt_frame frame, int enable_caching)
{
// Obtain properties of frame and producer
mlt_properties properties = MLT_FRAME_PROPERTIES(frame);
mlt_producer producer = &self->parent;
mlt_properties producer_props = MLT_PRODUCER_PROPERTIES(producer);
// Check if user wants us to reload the image
if (mlt_properties_get_int(producer_props, "force_reload")) {
self->qimage = NULL;
self->current_image = NULL;
mlt_properties_set_int(producer_props, "force_reload", 0);
}
// Get the original position of this frame
mlt_position position = mlt_frame_original_position(frame);
position += mlt_producer_get_in(producer);
// Image index
int image_idx = (int) floor((double) position / mlt_properties_get_int(producer_props, "ttl"))
% self->count;
int disable_exif = mlt_properties_get_int(producer_props, "disable_exif");
if (image_idx != self->qimage_idx) {
self->qimage = NULL;
}
if (!self->qimage || mlt_properties_get_int(producer_props, "_disable_exif") != disable_exif) {
self->current_image = NULL;
QImageReader reader;
QImage *qimage;
// Use Qt's orientation detection
reader.setAutoTransform(!disable_exif);
QString filename = QString::fromUtf8(mlt_properties_get_value(self->filenames, image_idx));
if (filename.isEmpty()) {
filename = QString::fromUtf8(mlt_properties_get(producer_props, "resource"));
}
// First try to detect the file type based on the content
// in case the file extension is incorrect.
reader.setDecideFormatFromContent(true);
reader.setFileName(filename);
if (reader.imageCount() > 1) {
QMovie movie(filename);
movie.setCacheMode(QMovie::CacheAll);
movie.jumpToFrame(image_idx);
qimage = new QImage(movie.currentImage());
} else {
qimage = new QImage(reader.read());
}
if (qimage->isNull()) {
mlt_log_info(MLT_PRODUCER_SERVICE(&self->parent),
"QImage retry: %d - %s\n",
reader.error(),
reader.errorString().toLatin1().data());
delete qimage;
// If detection fails, try a more comprehensive detection including file extension
reader.setDecideFormatFromContent(false);
reader.setFileName(filename);
qimage = new QImage(reader.read());
if (qimage->isNull()) {
mlt_log_info(MLT_PRODUCER_SERVICE(&self->parent),
"QImage fail: %d - %s\n",
reader.error(),
reader.errorString().toLatin1().data());
}
}
self->qimage = qimage;
if (!qimage->isNull()) {
if (enable_caching) {
// Register qimage for destruction and reuse
mlt_cache_item_close(self->qimage_cache);
mlt_service_cache_put(MLT_PRODUCER_SERVICE(producer),
"qimage.qimage",
qimage,
0,
(mlt_destructor) qimage_delete);
self->qimage_cache = mlt_service_cache_get(MLT_PRODUCER_SERVICE(producer),
"qimage.qimage");
} else {
// Ensure original image data will be deleted
mlt_properties_set_data(producer_props,
"qimage.qimage",
qimage,
0,
(mlt_destructor) qimage_delete,
NULL);
}
self->qimage_idx = image_idx;
// Store the width/height of the qimage
self->current_width = qimage->width();
self->current_height = qimage->height();
mlt_events_block(producer_props, NULL);
mlt_properties_set_int(producer_props,
"format",
qimage->hasAlphaChannel() ? mlt_image_rgba : mlt_image_rgb);
mlt_properties_set_int(producer_props, "meta.media.width", self->current_width);
mlt_properties_set_int(producer_props, "meta.media.height", self->current_height);
mlt_properties_set_int(producer_props, "_disable_exif", disable_exif);
mlt_events_unblock(producer_props, NULL);
} else {
delete qimage;
self->qimage = NULL;
}
}
// Set width/height of frame
mlt_properties_set_int(properties, "width", self->current_width);
mlt_properties_set_int(properties, "height", self->current_height);
return image_idx;
}
void refresh_image(producer_qimage self,
mlt_frame frame,
mlt_image_format format,
int width,
int height,
int enable_caching)
{
// Obtain properties of frame and producer
mlt_properties properties = MLT_FRAME_PROPERTIES(frame);
mlt_producer producer = &self->parent;
// Get index and qimage
int image_idx = refresh_qimage(self, frame, enable_caching);
// optimization for subsequent iterations on single picture
if (!enable_caching || image_idx != self->image_idx || width != self->current_width
|| height != self->current_height)
self->current_image = NULL;
// If we have a qimage and need a new scaled image
if (self->qimage
&& (!self->current_image
|| (format != mlt_image_none && format != mlt_image_movit && format != self->format))) {
QString interps = mlt_properties_get(properties, "consumer.rescale");
bool interp = (interps != "nearest") && (interps != "none");
QImage *qimage = static_cast<QImage *>(self->qimage);
int has_alpha = qimage->hasAlphaChannel();
QImage::Format qimageFormat = has_alpha ? QImage::Format_ARGB32 : QImage::Format_RGB32;
// Note - the original qimage is already safe and ready for destruction
if (enable_caching && qimage->format() != qimageFormat) {
QImage temp = qimage->convertToFormat(qimageFormat);
qimage = new QImage(temp);
self->qimage = qimage;
mlt_cache_item_close(self->qimage_cache);
mlt_service_cache_put(MLT_PRODUCER_SERVICE(producer),
"qimage.qimage",
qimage,
0,
(mlt_destructor) qimage_delete);
self->qimage_cache = mlt_service_cache_get(MLT_PRODUCER_SERVICE(producer),
"qimage.qimage");
}
QImage scaled = interp ? qimage->scaled(QSize(width, height),
Qt::IgnoreAspectRatio,
Qt::SmoothTransformation)
: qimage->scaled(QSize(width, height));
// Store width and height
self->current_width = width;
self->current_height = height;
// Allocate/define image
self->current_alpha = NULL;
self->alpha_size = 0;
// Convert scaled image to target format (it might be premultiplied after scaling).
scaled = scaled.convertToFormat(qimageFormat);
// Copy the image
int image_size;
if (has_alpha) {
self->format = mlt_image_rgba;
scaled = scaled.convertToFormat(QImage::Format_RGBA8888);
image_size = mlt_image_format_size(self->format, width, height, NULL);
self->current_image = (uint8_t *) mlt_pool_alloc(image_size);
memcpy(self->current_image, scaled.constBits(), scaled.sizeInBytes());
} else {
self->format = mlt_image_rgb;
scaled = scaled.convertToFormat(QImage::Format_RGB888);
image_size = mlt_image_format_size(self->format, width, height, NULL);
self->current_image = (uint8_t *) mlt_pool_alloc(image_size);
for (int y = 0; y < height; y++) {
QRgb *values = reinterpret_cast<QRgb *>(scaled.scanLine(y));
memcpy(&self->current_image[3 * y * width], values, 3 * width);
}
}
// Convert image to requested format
if (format != mlt_image_none && format != mlt_image_movit && format != self->format
&& enable_caching) {
uint8_t *buffer = NULL;
// First, set the image so it can be converted when we get it
mlt_frame_replace_image(frame, self->current_image, self->format, width, height);
mlt_frame_set_image(frame, self->current_image, image_size, mlt_pool_release);
// get_image will do the format conversion
mlt_frame_get_image(frame, &buffer, &format, &width, &height, 0);
// cache copies of the image and alpha buffers
if (buffer) {
self->current_width = width;
self->current_height = height;
self->format = format;
image_size = mlt_image_format_size(format, width, height, NULL);
self->current_image = (uint8_t *) mlt_pool_alloc(image_size);
memcpy(self->current_image, buffer, image_size);
}
if ((buffer = (uint8_t *) mlt_frame_get_alpha_size(frame, &self->alpha_size))) {
if (!self->alpha_size)
self->alpha_size = self->current_width * self->current_height;
self->current_alpha = (uint8_t *) mlt_pool_alloc(self->alpha_size);
memcpy(self->current_alpha, buffer, self->alpha_size);
}
}
self->image_idx = image_idx;
if (enable_caching) {
// Update the cache
mlt_cache_item_close(self->image_cache);
mlt_service_cache_put(MLT_PRODUCER_SERVICE(producer),
"qimage.image",
self->current_image,
image_size,
mlt_pool_release);
self->image_cache = mlt_service_cache_get(MLT_PRODUCER_SERVICE(producer),
"qimage.image");
mlt_cache_item_close(self->alpha_cache);
self->alpha_cache = NULL;
if (self->current_alpha) {
mlt_service_cache_put(MLT_PRODUCER_SERVICE(producer),
"qimage.alpha",
self->current_alpha,
self->alpha_size,
mlt_pool_release);
self->alpha_cache = mlt_service_cache_get(MLT_PRODUCER_SERVICE(producer),
"qimage.alpha");
}
}
}
// Set width/height of frame
mlt_properties_set_int(properties, "width", self->current_width);
mlt_properties_set_int(properties, "height", self->current_height);
}
extern void make_tempfile(producer_qimage self, const char *xml)
{
// Generate a temporary file for the svg
QTemporaryFile tempFile("mlt.XXXXXX");
tempFile.setAutoRemove(false);
if (tempFile.open()) {
// Write the svg into the temp file
QByteArray fullname = tempFile.fileName().toUtf8();
// Strip leading crap
while (xml[0] != '<')
xml++;
qint64 remaining_bytes = strlen(xml);
while (remaining_bytes > 0)
remaining_bytes -= tempFile.write(xml + strlen(xml) - remaining_bytes, remaining_bytes);
tempFile.close();
mlt_properties_set(self->filenames, "0", fullname.data());
mlt_properties_set_data(MLT_PRODUCER_PROPERTIES(&self->parent),
"__temporary_file__",
fullname.data(),
0,
(mlt_destructor) unlink,
NULL);
}
}
int load_sequence_sprintf(producer_qimage self, mlt_properties properties, const char *filename)
{
int result = 0;
// Obtain filenames with pattern
if (filename && strchr(filename, '%')) {
// handle picture sequences
int i = mlt_properties_get_int(properties, "begin");
int keyvalue = 0;
for (int gap = 0; gap < 100;) {
QString full = QString::asprintf(filename, i++);
if (full == filename) {
break;
}
if (QFile::exists(full)) {
QString key = QString::asprintf("%d", keyvalue++);
mlt_properties_set(self->filenames,
key.toLatin1().constData(),
full.toUtf8().constData());
gap = 0;
} else {
gap++;
}
}
if (mlt_properties_count(self->filenames) > 0) {
mlt_properties_set_int(properties, "ttl", 1);
result = 1;
}
}
return result;
}
int load_folder(producer_qimage self, const char *filename)
{
int result = 0;
// Obtain filenames within folder
if (strstr(filename, "/.all.") != NULL) {
mlt_properties filename_property = self->filenames;
QFileInfo info(filename);
QDir dir = info.absoluteDir();
QStringList filters = {QStringLiteral("*.%1").arg(info.suffix())};
QStringList files = dir.entryList(filters, QDir::Files, QDir::Name);
int key;
for (auto &f : files) {
key = mlt_properties_count(filename_property);
mlt_properties_set_string(filename_property,
QString::number(key).toLatin1(),
dir.absoluteFilePath(f).toUtf8().constData());
}
result = 1;
}
return result;
}
} // extern "C"