]> git.sesse.net Git - mlt/blob - src/modules/opengl/filter_movit_convert.cpp
Use the new ResourcePool Movit functionality.
[mlt] / src / modules / opengl / filter_movit_convert.cpp
1 /*
2  * filter_movit_convert.cpp
3  * Copyright (C) 2013 Dan Dennedy <dan@dennedy.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software Foundation,
17  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #include <framework/mlt.h>
21 #include <string.h>
22 #include <stdlib.h>
23 #include <assert.h>
24 #include <string>
25
26 #include "filter_glsl_manager.h"
27 #include <movit/effect_chain.h>
28 #include <movit/util.h>
29 #include "mlt_movit_input.h"
30 #include <mlt++/MltProducer.h>
31 #include "mlt_flip_effect.h"
32
33 static void set_movit_parameters( GlslChain *chain, mlt_service service, mlt_frame frame );
34
35 static void yuv422_to_yuv422p( uint8_t *yuv422, uint8_t *yuv422p, int width, int height )
36 {
37         uint8_t *Y = yuv422p;
38         uint8_t *U = Y + width * height;
39         uint8_t *V = U + width * height / 2;
40         int n = width * height / 2 + 1;
41         while ( --n ) {
42                 *Y++ = *yuv422++;
43                 *U++ = *yuv422++;
44                 *Y++ = *yuv422++;
45                 *V++ = *yuv422++;
46         }
47 }
48
49 static int convert_on_cpu( mlt_frame frame, uint8_t **image, mlt_image_format *format, mlt_image_format output_format )
50 {
51         int error = 0;
52         mlt_filter cpu_csc = (mlt_filter) mlt_properties_get_data( MLT_FRAME_PROPERTIES( frame ), "cpu_csc", NULL );
53         if ( cpu_csc ) {
54                 int (* save_fp )( mlt_frame self, uint8_t **image, mlt_image_format *input, mlt_image_format output )
55                         = frame->convert_image;
56                 frame->convert_image = NULL;
57                 mlt_filter_process( cpu_csc, frame );
58                 error = frame->convert_image( frame, image, format, output_format );
59                 frame->convert_image = save_fp;
60         } else {
61                 error = 1;
62         }
63         return error;
64 }
65
66 static void delete_chain( EffectChain* chain )
67 {
68         delete chain;
69 }
70
71 static void get_format_from_properties( mlt_properties properties, ImageFormat* image_format, YCbCrFormat* ycbcr_format )
72 {
73         switch ( mlt_properties_get_int( properties, "colorspace" ) ) {
74         case 601:
75                 ycbcr_format->luma_coefficients = YCBCR_REC_601;
76                 break;
77         case 709:
78         default:
79                 ycbcr_format->luma_coefficients = YCBCR_REC_709;
80                 break;
81         }
82
83         switch ( mlt_properties_get_int( properties, "color_primaries" ) ) {
84         case 601625:
85                 image_format->color_space = COLORSPACE_REC_601_625;
86                 break;
87         case 601525:
88                 image_format->color_space = COLORSPACE_REC_601_525;
89                 break;
90         case 709:
91         default:
92                 image_format->color_space = COLORSPACE_REC_709;
93                 break;
94         }
95
96         image_format->gamma_curve = GAMMA_REC_709;
97
98         if ( mlt_properties_get_int( properties, "force_full_luma" ) ) {
99                 ycbcr_format->full_range = true;
100         } else {
101                 ycbcr_format->full_range = ( mlt_properties_get_int( properties, "full_luma" ) == 1 );
102         }
103
104         // TODO: make new frame properties set by producers
105         ycbcr_format->cb_x_position = ycbcr_format->cr_x_position = 0.0f;
106         ycbcr_format->cb_y_position = ycbcr_format->cr_y_position = 0.5f;
107 }
108
109 static void build_fingerprint( mlt_service service, mlt_frame frame, std::string *fingerprint )
110 {
111         if ( service == (mlt_service) -1 ) {
112                 fingerprint->append( "input" );
113                 return;
114         }
115
116         Effect* effect = GlslManager::get_effect( service, frame );
117         assert( effect );
118         mlt_service input_a = GlslManager::get_effect_input( service, frame );
119         fingerprint->push_back( '(' );
120         build_fingerprint( input_a, frame, fingerprint );
121         fingerprint->push_back( ')' );
122
123         mlt_frame frame_b;
124         mlt_service input_b;
125         GlslManager::get_effect_secondary_input( service, frame, &input_b, &frame_b );
126         if ( input_b ) {
127                 fingerprint->push_back( '(' );
128                 build_fingerprint( input_b, frame_b, fingerprint );
129                 fingerprint->push_back( ')' );
130         }
131
132         fingerprint->push_back( '(' );
133         fingerprint->append( mlt_properties_get( MLT_SERVICE_PROPERTIES( service ), "_unique_id" ) );
134
135         const char* effect_fingerprint = mlt_properties_get( MLT_SERVICE_PROPERTIES( service ), "_movit fingerprint" );
136         if ( effect_fingerprint ) {
137                 fingerprint->push_back( '[' );
138                 fingerprint->append( effect_fingerprint );
139                 fingerprint->push_back( ']' );
140         }
141
142         bool disable = mlt_properties_get_int( MLT_SERVICE_PROPERTIES( service ), "movit.parms.int.disable" );
143         if ( disable ) {
144                 fingerprint->push_back( 'd' );
145         }
146         fingerprint->push_back( ')' );
147 }
148
149 static Effect* build_movit_chain( mlt_service service, mlt_frame frame, GlslChain *chain )
150 {
151         if ( service == (mlt_service) -1 ) {
152                 mlt_producer producer = mlt_producer_cut_parent( mlt_frame_get_original_producer( frame ) );
153                 MltInput* input = GlslManager::get_input( producer, frame );
154                 GlslManager::set_input( producer, frame, NULL );
155                 chain->effect_chain->add_input( input );
156                 chain->effects.insert(std::make_pair( MLT_SERVICE( producer ), input ) );
157                 return input;
158         }
159
160         Effect* effect = GlslManager::get_effect( service, frame );
161         assert( effect );
162         GlslManager::set_effect( service, frame, NULL );
163
164         mlt_service input_a = GlslManager::get_effect_input( service, frame );
165         mlt_service input_b;
166         mlt_frame frame_b;
167         GlslManager::get_effect_secondary_input( service, frame, &input_b, &frame_b );
168         Effect *effect_a = build_movit_chain( input_a, frame, chain );
169
170         if ( input_b ) {
171                 Effect *effect_b = build_movit_chain( input_b, frame_b, chain );
172                 chain->effect_chain->add_effect( effect, effect_a, effect_b );
173         } else {
174                 chain->effect_chain->add_effect( effect, effect_a );
175         }
176                 
177         chain->effects.insert(std::make_pair( service, effect ) );
178         return effect;
179 }
180
181 static void dispose_movit_effects( mlt_service service, mlt_frame frame )
182 {
183         if ( service == (mlt_service) -1 ) {
184                 mlt_producer producer = mlt_producer_cut_parent( mlt_frame_get_original_producer( frame ) );
185                 delete GlslManager::get_input( producer, frame );
186                 GlslManager::set_input( producer, frame, NULL );
187                 return;
188         }
189
190         delete GlslManager::get_effect( service, frame );
191         GlslManager::set_effect( service, frame, NULL );
192
193         mlt_service input_a = GlslManager::get_effect_input( service, frame );
194         mlt_service input_b;
195         mlt_frame frame_b;
196         GlslManager::get_effect_secondary_input( service, frame, &input_b, &frame_b );
197         dispose_movit_effects( input_a, frame );
198
199         if ( input_b ) {
200                 dispose_movit_effects( input_b, frame_b );
201         }
202 }
203
204 static void finalize_movit_chain( mlt_service leaf_service, mlt_frame frame )
205 {
206         GlslChain* chain = GlslManager::get_chain( leaf_service );
207
208         std::string new_fingerprint;
209         build_fingerprint( leaf_service, frame, &new_fingerprint );
210
211         // Build the chain if needed.
212         if ( !chain || new_fingerprint != chain->fingerprint ) {
213                 mlt_log_debug( leaf_service, "=== CREATING NEW CHAIN (old chain=%p, leaf=%p, fingerprint=%s) ===\n", chain, leaf_service, new_fingerprint.c_str() );
214                 mlt_profile profile = mlt_service_profile( leaf_service );
215                 chain = new GlslChain;
216                 chain->effect_chain = new EffectChain(
217                         profile->display_aspect_num,
218                         profile->display_aspect_den,
219                         GlslManager::get_instance()->get_resource_pool()
220                 );
221                 chain->fingerprint = new_fingerprint;
222
223                 build_movit_chain( leaf_service, frame, chain );
224                 set_movit_parameters( chain, leaf_service, frame );
225                 chain->effect_chain->add_effect( new Mlt::VerticalFlip );
226
227                 ImageFormat output_format;
228                 output_format.color_space = COLORSPACE_sRGB;
229                 output_format.gamma_curve = GAMMA_sRGB;
230                 chain->effect_chain->add_output(output_format, OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
231                 chain->effect_chain->set_dither_bits(8);
232                 chain->effect_chain->finalize();
233
234                 GlslManager::set_chain( leaf_service, chain );
235         } else {
236                 // Delete all the created Effect instances to avoid memory leaks.
237                 dispose_movit_effects( leaf_service, frame );
238         }
239 }
240
241 static void set_movit_parameters( GlslChain *chain, mlt_service service, mlt_frame frame )
242 {
243         if ( service == (mlt_service) -1 ) {
244                 mlt_producer producer = mlt_producer_cut_parent( mlt_frame_get_original_producer( frame ) );
245                 MltInput* input = (MltInput *) chain->effects[ MLT_PRODUCER_SERVICE( producer ) ];
246                 input->set_pixel_data( GlslManager::get_input_pixel_pointer( producer, frame ) );
247                 return;
248         }
249
250         Effect* effect = chain->effects[ service ];
251         mlt_service input_a = GlslManager::get_effect_input( service, frame );
252         set_movit_parameters( chain, input_a, frame );
253
254         mlt_service input_b;
255         mlt_frame frame_b;
256         GlslManager::get_effect_secondary_input( service, frame, &input_b, &frame_b );
257         if ( input_b ) {
258                 set_movit_parameters( chain, input_b, frame_b );
259         }
260                 
261         mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
262         int count = mlt_properties_count( properties );
263         for (int i = 0; i < count; ++i) {
264                 const char *name = mlt_properties_get_name( properties, i );
265                 if (strncmp(name, "movit.parms.float.", strlen("movit.parms.float.")) == 0) {
266                         bool ok = effect->set_float(name + strlen("movit.parms.float."),
267                                 mlt_properties_get_double( properties, name ));
268                         assert(ok);
269                 }
270                 if (strncmp(name, "movit.parms.int.", strlen("movit.parms.int.")) == 0) {
271                         bool ok = effect->set_int(name + strlen("movit.parms.int."),
272                                 mlt_properties_get_int( properties, name ));
273                         assert(ok);
274                 }
275                 if (strncmp(name, "movit.parms.vec3.", strlen("movit.parms.vec3.")) == 0 &&
276                     strcmp(name + strlen(name) - 3, "[0]") == 0) {
277                         float val[3];
278                         char *name_copy = strdup(name);
279                         char *index_char = name_copy + strlen(name_copy) - 2;
280                         val[0] = mlt_properties_get_double( properties, name_copy );
281                         *index_char = '1';
282                         val[1] = mlt_properties_get_double( properties, name_copy );
283                         *index_char = '2';
284                         val[2] = mlt_properties_get_double( properties, name_copy );
285                         index_char[-1] = '\0';
286                         bool ok = effect->set_vec3(name_copy + strlen("movit.parms.vec3."), val);
287                         assert(ok);
288                         free(name_copy);
289                 }
290                 if (strncmp(name, "movit.parms.vec4.", strlen("movit.parms.vec4.")) == 0 &&
291                     strcmp(name + strlen(name) - 3, "[0]") == 0) {
292                         float val[4];
293                         char *name_copy = strdup(name);
294                         char *index_char = name_copy + strlen(name_copy) - 2;
295                         val[0] = mlt_properties_get_double( properties, name_copy );
296                         *index_char = '1';
297                         val[1] = mlt_properties_get_double( properties, name_copy );
298                         *index_char = '2';
299                         val[2] = mlt_properties_get_double( properties, name_copy );
300                         *index_char = '3';
301                         val[3] = mlt_properties_get_double( properties, name_copy );
302                         index_char[-1] = '\0';
303                         bool ok = effect->set_vec4(name_copy + strlen("movit.parms.vec4."), val);
304                         assert(ok);
305                         free(name_copy);
306                 }
307         }
308 }
309
310 static void dispose_pixel_pointers( mlt_service service, mlt_frame frame )
311 {
312         if ( service == (mlt_service) -1 ) {
313                 mlt_producer producer = mlt_producer_cut_parent( mlt_frame_get_original_producer( frame ) );
314                 mlt_pool_release( GlslManager::get_input_pixel_pointer( producer, frame ) );
315                 return;
316         }
317
318         mlt_service input_a = GlslManager::get_effect_input( service, frame );
319         dispose_pixel_pointers( input_a, frame );
320
321         mlt_service input_b;
322         mlt_frame frame_b;
323         GlslManager::get_effect_secondary_input( service, frame, &input_b, &frame_b );
324         if ( input_b ) {
325                 dispose_pixel_pointers( input_b, frame_b );
326         }
327 }
328
329 static int movit_render( EffectChain *chain, mlt_frame frame, mlt_image_format *format, mlt_image_format output_format, int width, int height, uint8_t **image )
330 {
331         GlslManager* glsl = GlslManager::get_instance();
332         int error;
333         if ( output_format == mlt_image_glsl_texture ) {
334                 error = glsl->render_frame_texture( chain, frame, width, height, image );
335         }
336         else {
337                 error = glsl->render_frame_rgba( chain, frame, width, height, image );
338                 if ( !error && output_format != mlt_image_rgb24a ) {
339                         *format = mlt_image_rgb24a;
340                         error = convert_on_cpu( frame, image, format, output_format );
341                 }
342         }
343         return error;
344 }
345
346 // Create an MltInput for an image with the given format and dimensions.
347 static MltInput* create_input( mlt_properties properties, mlt_image_format format, int aspect_width, int aspect_height, int width, int height )
348 {
349         MltInput* input = new MltInput( aspect_width, aspect_height );
350         if ( format == mlt_image_rgb24a || format == mlt_image_opengl ) {
351                 // TODO: Get the color space if available.
352                 input->useFlatInput( FORMAT_RGBA_POSTMULTIPLIED_ALPHA, width, height );
353         }
354         else if ( format == mlt_image_rgb24 ) {
355                 // TODO: Get the color space if available.
356                 input->useFlatInput( FORMAT_RGB, width, height );
357         }
358         else if ( format == mlt_image_yuv420p ) {
359                 ImageFormat image_format;
360                 YCbCrFormat ycbcr_format;
361                 get_format_from_properties( properties, &image_format, &ycbcr_format );
362                 ycbcr_format.chroma_subsampling_x = ycbcr_format.chroma_subsampling_y = 2;
363                 input->useYCbCrInput( image_format, ycbcr_format, width, height );
364         }
365         else if ( format == mlt_image_yuv422 ) {
366                 ImageFormat image_format;
367                 YCbCrFormat ycbcr_format;
368                 get_format_from_properties( properties, &image_format, &ycbcr_format );
369                 ycbcr_format.chroma_subsampling_x = 2;
370                 ycbcr_format.chroma_subsampling_y = 1;
371                 input->useYCbCrInput( image_format, ycbcr_format, width, height );
372         }
373         return input;
374 }
375
376 // Make a copy of the given image (allocated using mlt_pool_alloc) suitable
377 // to pass as pixel pointer to an MltInput (created using create_input
378 // with the same parameters), and return that pointer.
379 static uint8_t* make_input_copy( mlt_image_format format, uint8_t *image, int width, int height )
380 {
381         int img_size = mlt_image_format_size( format, width, height, NULL );
382         uint8_t* img_copy = (uint8_t*) mlt_pool_alloc( img_size );
383         if ( format == mlt_image_yuv422 ) {
384                 yuv422_to_yuv422p( image, img_copy, width, height );
385         } else {
386                 memcpy( img_copy, image, img_size );
387         }
388         return img_copy;
389 }
390
391 static int convert_image( mlt_frame frame, uint8_t **image, mlt_image_format *format, mlt_image_format output_format )
392 {
393         // Nothing to do!
394         if ( *format == output_format )
395                 return 0;
396
397         mlt_properties properties = MLT_FRAME_PROPERTIES( frame );
398
399         mlt_log_debug( NULL, "filter_movit_convert: %s -> %s (%d)\n",
400                 mlt_image_format_name( *format ), mlt_image_format_name( output_format ),
401                 mlt_frame_get_position( frame ) );
402
403         // Use CPU if glsl not initialized or not supported.
404         GlslManager* glsl = GlslManager::get_instance();
405         if ( !glsl || !glsl->get_int("glsl_supported" ) )
406                 return convert_on_cpu( frame, image, format, output_format );
407
408         // Do non-GL image conversions on a CPU-based image converter.
409         if ( *format != mlt_image_glsl && output_format != mlt_image_glsl && output_format != mlt_image_glsl_texture )
410                 return convert_on_cpu( frame, image, format, output_format );
411
412         int error = 0;
413         int width = mlt_properties_get_int( properties, "width" );
414         int height = mlt_properties_get_int( properties, "height" );
415         GlslManager::get_instance()->lock_service( frame );
416         
417         // If we're at the beginning of a series of Movit effects, store the input
418         // sent into the chain.
419         if ( output_format == mlt_image_glsl ) {
420                 mlt_producer producer = mlt_producer_cut_parent( mlt_frame_get_original_producer( frame ) );
421                 mlt_profile profile = mlt_service_profile( MLT_PRODUCER_SERVICE( producer ) );
422                 MltInput *input = create_input( properties, *format, profile->width, profile->height, width, height );
423                 GlslManager::set_input( producer, frame, input );
424                 uint8_t *img_copy = make_input_copy( *format, *image, width, height );
425                 GlslManager::set_input_pixel_pointer( producer, frame, img_copy );
426
427                 *image = (uint8_t *) -1;
428                 mlt_frame_set_image( frame, *image, 0, NULL );
429         }
430
431         // If we're at the _end_ of a series of Movit effects, render the chain.
432         if ( *format == mlt_image_glsl ) {
433                 mlt_service leaf_service = (mlt_service) *image;
434
435                 // Construct the chain unless we already have a good one.
436                 finalize_movit_chain( leaf_service, frame );
437
438                 // Set per-frame parameters now that we know which Effect instances to set them on.
439                 // (finalize_movit_chain may already have done this, though, but twice doesn't hurt.)
440                 GlslChain *chain = GlslManager::get_chain( leaf_service );
441                 set_movit_parameters( chain, leaf_service, frame );
442
443                 error = movit_render( chain->effect_chain, frame, format, output_format, width, height, image );
444
445                 dispose_pixel_pointers( leaf_service, frame );
446         }
447
448         // If we've been asked to render some frame directly to a texture (without any
449         // effects in-between), we create a new mini-chain to do so.
450         if ( *format != mlt_image_glsl && output_format == mlt_image_glsl_texture ) {
451                 // We might already have a texture from a previous conversion from mlt_image_glsl.
452                 glsl_texture texture = (glsl_texture) mlt_properties_get_data( properties, "movit.convert.texture", NULL );
453                 // XXX: requires a special property set on the frame by the app for now
454                 // because we do not have reliable way to clear the texture property
455                 // when a downstream filter has changed image.
456                 if ( texture && mlt_properties_get_int( properties, "movit.convert.use_texture") ) {
457                         *image = (uint8_t*) &texture->texture;
458                         mlt_frame_set_image( frame, *image, 0, NULL );
459                 } else {
460                         // Use a separate chain to convert image in RAM to OpenGL texture.
461                         // Use cached chain if available and compatible.
462                         Mlt::Producer producer( mlt_producer_cut_parent( mlt_frame_get_original_producer( frame ) ) );
463                         EffectChain *chain = (EffectChain*) producer.get_data( "movit.convert.chain" );
464                         MltInput *input = (MltInput*) producer.get_data( "movit.convert.input" );
465                         int w = producer.get_int( "movit.convert.width" );
466                         int h = producer.get_int( "movit.convert.height" );
467                         mlt_image_format f = (mlt_image_format) producer.get_int( "movit.convert.format" );
468                         if ( !chain || !input || width != w || height != h || *format != f ) {
469                                 chain = new EffectChain( width, height );
470                                 input = create_input( properties, *format, width, height, width, height );
471                                 chain->add_input( input );
472                                 chain->add_effect( new Mlt::VerticalFlip() );
473                                 ImageFormat movit_output_format;
474                                 movit_output_format.color_space = COLORSPACE_sRGB;
475                                 movit_output_format.gamma_curve = GAMMA_sRGB;
476                                 chain->add_output(movit_output_format, OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
477                                 chain->set_dither_bits(8);
478                                 chain->finalize();
479                                 producer.set( "movit.convert.chain", chain, 0, (mlt_destructor) delete_chain );
480                                 producer.set( "movit.convert.input", input, 0, NULL );
481                                 producer.set( "movit.convert.width", width );
482                                 producer.set( "movit.convert.height", height );
483                                 producer.set( "movit.convert.format", *format );
484                         }
485
486                         if ( *format == mlt_image_yuv422 ) {
487                                 // We need to convert to planar, which make_input_copy() will do for us.
488                                 uint8_t *planar = make_input_copy( *format, *image, width, height );
489                                 input->set_pixel_data( planar );
490                                 error = movit_render( chain, frame, format, output_format, width, height, image );
491                                 mlt_pool_release( planar );
492                         } else {
493                                 input->set_pixel_data( *image );
494                                 error = movit_render( chain, frame, format, output_format, width, height, image );
495                         }
496                 }
497         }
498
499         GlslManager::get_instance()->unlock_service( frame );
500
501         mlt_properties_set_int( properties, "format", output_format );
502         *format = output_format;
503
504         return error;
505 }
506
507 static mlt_frame process( mlt_filter filter, mlt_frame frame )
508 {
509         // Set a default colorspace on the frame if not yet set by the producer.
510         // The producer may still change it during get_image.
511         // This way we do not have to modify each producer to set a valid colorspace.
512         mlt_properties properties = MLT_FRAME_PROPERTIES(frame);
513         if ( mlt_properties_get_int( properties, "colorspace" ) <= 0 )
514                 mlt_properties_set_int( properties, "colorspace", mlt_service_profile( MLT_FILTER_SERVICE(filter) )->colorspace );
515
516         frame->convert_image = convert_image;
517
518         mlt_filter cpu_csc = (mlt_filter) mlt_properties_get_data( MLT_FILTER_PROPERTIES( filter ), "cpu_csc", NULL );
519         mlt_properties_inc_ref( MLT_FILTER_PROPERTIES(cpu_csc) );
520         mlt_properties_set_data( properties, "cpu_csc", cpu_csc, 0,
521                 (mlt_destructor) mlt_filter_close, NULL );
522
523         return frame;
524 }
525
526 static mlt_filter create_filter( mlt_profile profile, const char *effect )
527 {
528         mlt_filter filter;
529         char *id = strdup( effect );
530         char *arg = strchr( id, ':' );
531         if ( arg != NULL )
532                 *arg ++ = '\0';
533
534         // The swscale and avcolor_space filters require resolution as arg to test compatibility
535         if ( !strcmp( effect, "avcolor_space" ) )
536                 filter = mlt_factory_filter( profile, id, &profile->width );
537         else
538                 filter = mlt_factory_filter( profile, id, arg );
539         if ( filter )
540                 mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "_loader", 1 );
541         free( id );
542         return filter;
543 }
544
545 extern "C" {
546
547 mlt_filter filter_movit_convert_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
548 {
549         mlt_filter filter = NULL;
550         GlslManager* glsl = GlslManager::get_instance();
551
552         if ( glsl && ( filter = mlt_filter_new() ) )
553         {
554                 mlt_properties properties = MLT_FILTER_PROPERTIES( filter );
555                 glsl->add_ref( properties );
556 #ifdef WIN32
557                 // XXX avcolor_space is crashing on Windows in this context!
558                 mlt_filter cpu_csc = NULL;
559 #else
560                 mlt_filter cpu_csc = create_filter( profile, "avcolor_space" );
561 #endif
562                 if ( !cpu_csc )
563                         cpu_csc = create_filter( profile, "imageconvert" );
564                 if ( cpu_csc )
565                         mlt_properties_set_data( MLT_FILTER_PROPERTIES( filter ), "cpu_csc", cpu_csc, 0,
566                                 (mlt_destructor) mlt_filter_close, NULL );
567                 filter->process = process;
568         }
569         return filter;
570 }
571
572 }