field rendering and alignment for composite, bugfixes for luma, pixbuf and pango
[melted] / src / modules / gtk2 / producer_pango.c
1 /*
2 * producer_pango.c -- a pango-based titler
3 * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4 * Author: Dan Dennedy <dan@dennedy.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program 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
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 #include "producer_pango.h"
22 #include <framework/mlt_frame.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <gdk-pixbuf/gdk-pixbuf.h>
26 #include <pango/pangoft2.h>
27 #include <freetype/freetype.h>
28
29 struct producer_pango_s
30 {
31 struct mlt_producer_s parent;
32 int width;
33 int height;
34 uint8_t *image;
35 uint8_t *alpha;
36 char *fgcolor;
37 char *bgcolor;
38 int align;
39 int pad;
40 char *markup;
41 char *text;
42 char *font;
43 };
44
45 // special color type used by internal pango routines
46 typedef struct
47 {
48 uint8_t r, g, b, a;
49 } rgba_color;
50
51 // Forward declarations
52 static int producer_get_frame( mlt_producer parent, mlt_frame_ptr frame, int index );
53 static void producer_close( mlt_producer parent );
54 static void pango_draw_background( GdkPixbuf *pixbuf, rgba_color bg );
55 static GdkPixbuf *pango_get_pixbuf( const char *markup, const char *text, const char *font,
56 rgba_color fg, rgba_color bg, int pad, int align );
57
58 /** Parse the alignment property.
59 */
60
61 static int alignment_parse( char* align )
62 {
63 int ret = pango_align_left;
64
65 if ( align == NULL );
66 else if ( isdigit( align[ 0 ] ) )
67 ret = atoi( align );
68 else if ( align[ 0 ] == 'c' || align[ 0 ] == 'm' )
69 ret = pango_align_center;
70 else if ( align[ 0 ] == 'r' )
71 ret = pango_align_right;
72
73 return ret;
74 }
75
76 mlt_producer producer_pango_init( const char *filename )
77 {
78 producer_pango this = calloc( sizeof( struct producer_pango_s ), 1 );
79 if ( this != NULL && mlt_producer_init( &this->parent, this ) == 0 )
80 {
81 mlt_producer producer = &this->parent;
82
83 producer->get_frame = producer_get_frame;
84 producer->close = producer_close;
85
86 // This is required to initialise gdk-pixbuf
87 g_type_init();
88
89 // Get the properties interface
90 mlt_properties properties = mlt_producer_properties( &this->parent );
91
92 // Set the default properties
93 mlt_properties_set( properties, "fgcolour", "0xffffffff" );
94 mlt_properties_set( properties, "bgcolour", "0x00000000" );
95 mlt_properties_set_int( properties, "align", pango_align_left );
96 mlt_properties_set_int( properties, "pad", 0 );
97 mlt_properties_set( properties, "text", "" );
98 mlt_properties_set( properties, "font", "Sans 48" );
99
100 if ( filename == NULL )
101 {
102 mlt_properties_set( properties, "resource", "pango" );
103 mlt_properties_set( properties, "markup", "" );
104 }
105 else if ( filename[ 0 ] == '+' || strstr( filename, "/+" ) )
106 {
107 char *copy = strdup( filename + 1 );
108 char *markup = copy;
109 if ( strstr( markup, "/+" ) )
110 markup = strstr( markup, "/+" ) + 2;
111 ( *strrchr( markup, '.' ) ) = '\0';
112 while ( strchr( markup, '~' ) )
113 ( *strchr( markup, '~' ) ) = '\n';
114 mlt_properties_set( properties, "resource", ( char * )filename );
115 mlt_properties_set( properties, "markup", markup );
116 free( copy );
117 }
118 else
119 {
120 FILE *f = fopen( filename, "r" );
121 if ( f != NULL )
122 {
123 char line[81];
124 char *markup = NULL;
125 size_t size = 0;
126 line[80] = '\0';
127
128 while ( fgets( line, 80, f ) )
129 {
130 size += strlen( line ) + 1;
131 if ( markup )
132 {
133 markup = realloc( markup, size );
134 strcat( markup, line );
135 }
136 else
137 {
138 markup = strdup( line );
139 }
140 }
141 fclose( f );
142
143 if ( markup[ strlen( markup ) - 1 ] == '\n' )
144 markup[ strlen( markup ) - 1 ] = '\0';
145
146 mlt_properties_set( properties, "resource", ( char * ) filename );
147 mlt_properties_set( properties, "markup", ( char * ) ( markup == NULL ? "" : markup ) );
148 free( markup );
149 }
150 else
151 {
152 mlt_properties_set( properties, "resource", "pango" );
153 mlt_properties_set( properties, "markup", "" );
154 }
155 }
156
157 return producer;
158 }
159 free( this );
160 return NULL;
161 }
162
163 static void set_string( char **string, char *value, char *fallback )
164 {
165 if ( value != NULL )
166 {
167 free( *string );
168 *string = strdup( value );
169 }
170 else if ( *string == NULL && fallback != NULL )
171 {
172 *string = strdup( fallback );
173 }
174 else if ( *string != NULL && fallback == NULL )
175 {
176 free( *string );
177 *string = NULL;
178 }
179 }
180
181 rgba_color parse_color( char *color )
182 {
183 rgba_color result = { 0xff, 0xff, 0xff, 0xff };
184
185 if ( !strncmp( color, "0x", 2 ) )
186 {
187 unsigned int temp = 0;
188 sscanf( color + 2, "%x", &temp );
189 result.r = ( temp >> 24 ) & 0xff;
190 result.g = ( temp >> 16 ) & 0xff;
191 result.b = ( temp >> 8 ) & 0xff;
192 result.a = ( temp ) & 0xff;
193 }
194 else if ( !strcmp( color, "red" ) )
195 {
196 result.r = 0xff;
197 result.g = 0x00;
198 result.b = 0x00;
199 }
200 else if ( !strcmp( color, "green" ) )
201 {
202 result.r = 0x00;
203 result.g = 0xff;
204 result.b = 0x00;
205 }
206 else if ( !strcmp( color, "blue" ) )
207 {
208 result.r = 0x00;
209 result.g = 0x00;
210 result.b = 0xff;
211 }
212 else
213 {
214 unsigned int temp = 0;
215 sscanf( color, "%d", &temp );
216 result.r = ( temp >> 24 ) & 0xff;
217 result.g = ( temp >> 16 ) & 0xff;
218 result.b = ( temp >> 8 ) & 0xff;
219 result.a = ( temp ) & 0xff;
220 }
221
222 return result;
223 }
224
225 static void refresh_image( mlt_frame frame, int width, int height )
226 {
227 // Pixbuf
228 GdkPixbuf *pixbuf = NULL;
229
230 // Obtain properties of frame
231 mlt_properties properties = mlt_frame_properties( frame );
232
233 // Obtain the producer pango for this frame
234 producer_pango this = mlt_properties_get_data( properties, "producer_pango", NULL );
235
236 // Obtain the producer
237 mlt_producer producer = &this->parent;
238
239 // Obtain the producer properties
240 mlt_properties producer_props = mlt_producer_properties( producer );
241
242 // Get producer properties
243 char *fg = mlt_properties_get( producer_props, "fgcolour" );
244 char *bg = mlt_properties_get( producer_props, "bgcolour" );
245 int align = alignment_parse( mlt_properties_get( producer_props, "align" ) );
246 int pad = mlt_properties_get_int( producer_props, "pad" );
247 char *markup = mlt_properties_get( producer_props, "markup" );
248 char *text = mlt_properties_get( producer_props, "text" );
249 char *font = mlt_properties_get( producer_props, "font" );
250
251 // See if any properties changed
252 int property_changed = ( align != this->align );
253 property_changed = property_changed || ( this->fgcolor == NULL || ( fg && strcmp( fg, this->fgcolor ) ) );
254 property_changed = property_changed || ( this->bgcolor == NULL || ( bg && strcmp( bg, this->bgcolor ) ) );
255 property_changed = property_changed || ( pad != this->pad );
256 property_changed = property_changed || ( markup && this->markup && strcmp( markup, this->markup ) );
257 property_changed = property_changed || ( text && this->text && strcmp( text, this->text ) );
258 property_changed = property_changed || ( font && this->font && strcmp( font, this->font ) );
259
260 // Save the properties for next comparison
261 this->align = align;
262 this->pad = pad;
263 set_string( &this->fgcolor, fg, "0xffffffff" );
264 set_string( &this->bgcolor, bg, "0x00000000" );
265 set_string( &this->markup, markup, NULL );
266 set_string( &this->text, text, NULL );
267 set_string( &this->font, font, "Sans 48" );
268
269 if ( property_changed )
270 {
271 rgba_color fgcolor = parse_color( this->fgcolor );
272 rgba_color bgcolor = parse_color( this->bgcolor );
273
274 free( this->image );
275 free( this->alpha );
276 this->image = NULL;
277 this->alpha = NULL;
278
279 // Render the title
280 pixbuf = pango_get_pixbuf( markup, text, font, fgcolor, bgcolor, pad, align );
281
282 if ( pixbuf != NULL )
283 {
284 // Register this pixbuf for destruction and reuse
285 mlt_properties_set_data( producer_props, "pixbuf", pixbuf, 0, ( mlt_destructor )g_object_unref, NULL );
286
287 mlt_properties_set_int( producer_props, "real_width", gdk_pixbuf_get_width( pixbuf ) );
288 mlt_properties_set_int( producer_props, "real_height", gdk_pixbuf_get_height( pixbuf ) );
289
290 // Store the width/height of the pixbuf temporarily
291 this->width = gdk_pixbuf_get_width( pixbuf );
292 this->height = gdk_pixbuf_get_height( pixbuf );
293 }
294 }
295 else if ( width > 0 && ( this->image == NULL || width != this->width || height != this->height ) )
296 {
297 free( this->image );
298 free( this->alpha );
299 this->image = NULL;
300 this->alpha = NULL;
301
302 pixbuf = mlt_properties_get_data( producer_props, "pixbuf", NULL );
303 }
304
305 // If we have a pixbuf and a valid width
306 if ( pixbuf && width > 0 )
307 {
308 char *interps = mlt_properties_get( properties, "rescale.interp" );
309 int interp = GDK_INTERP_BILINEAR;
310
311 if ( strcmp( interps, "nearest" ) == 0 )
312 interp = GDK_INTERP_NEAREST;
313 else if ( strcmp( interps, "tiles" ) == 0 )
314 interp = GDK_INTERP_TILES;
315 else if ( strcmp( interps, "hyper" ) == 0 )
316 interp = GDK_INTERP_HYPER;
317
318 // fprintf( stderr, "SCALING PANGO from %dx%d to %dx%d was %dx%d\n", gdk_pixbuf_get_width( pixbuf ), gdk_pixbuf_get_height( pixbuf ), width, height, this->width, this->height );
319
320 // Note - the original pixbuf is already safe and ready for destruction
321 pixbuf = gdk_pixbuf_scale_simple( pixbuf, width, height, interp );
322
323 // Store width and height
324 this->width = width;
325 this->height = height;
326
327 // Allocate/define image
328 // IRRIGATE ME
329 uint8_t *image = malloc( width * ( height + 1 ) * 2 );
330 uint8_t *alpha = NULL;
331
332 // Allocate the alpha mask
333 alpha = malloc( this->width * this->height );
334
335 // Convert the image
336 mlt_convert_rgb24a_to_yuv422( gdk_pixbuf_get_pixels( pixbuf ),
337 this->width, this->height,
338 gdk_pixbuf_get_rowstride( pixbuf ),
339 image, alpha );
340
341 // Finished with pixbuf now
342 g_object_unref( pixbuf );
343
344 // reference the image in the producer
345 this->image = image;
346 this->alpha = alpha;
347 }
348
349 // Set width/height
350 mlt_properties_set_int( properties, "width", this->width );
351 mlt_properties_set_int( properties, "height", this->height );
352 mlt_properties_set_int( properties, "real_width", mlt_properties_get_int( producer_props, "real_width" ) );
353 mlt_properties_set_int( properties, "real_height", mlt_properties_get_int( producer_props, "real_height" ) );
354
355 // pass the image data without destructor
356 mlt_properties_set_data( properties, "image", this->image, this->width * ( this->height + 1 ) * 2, NULL, NULL );
357 mlt_properties_set_data( properties, "alpha", this->alpha, this->width * this->height, NULL, NULL );
358 }
359
360 static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable )
361 {
362 // Obtain properties of frame
363 mlt_properties properties = mlt_frame_properties( frame );
364
365 *width = mlt_properties_get_int( properties, "rescale_width" );
366 *height = mlt_properties_get_int( properties, "rescale_height" );
367
368 // Refresh the image
369 refresh_image( frame, *width, *height );
370
371 // Determine format
372 //mlt_producer this = mlt_properties_get_data( properties, "producer_pango", NULL );
373 //*format = ( mlt_properties_get_int( mlt_producer_properties( this ), "bpp" ) == 4 ) ? mlt_image_rgb24a : mlt_image_rgb24;
374
375 // May need to know the size of the image to clone it
376 int size = 0;
377
378 // Get the image
379 uint8_t *image = mlt_properties_get_data( properties, "image", &size );
380
381 // Get width and height
382 *width = mlt_properties_get_int( properties, "width" );
383 *height = mlt_properties_get_int( properties, "height" );
384
385 // Clone if necessary
386 if ( writable )
387 {
388 // Clone our image
389 // IRRIGATE ME
390 uint8_t *copy = malloc( size );
391 memcpy( copy, image, size );
392
393 // We're going to pass the copy on
394 image = copy;
395
396 // Now update properties so we free the copy after
397 mlt_properties_set_data( properties, "image", copy, size, free, NULL );
398 }
399
400 // Pass on the image
401 *buffer = image;
402
403 return 0;
404 }
405
406 static uint8_t *producer_get_alpha_mask( mlt_frame this )
407 {
408 // Obtain properties of frame
409 mlt_properties properties = mlt_frame_properties( this );
410
411 // Return the alpha mask
412 return mlt_properties_get_data( properties, "alpha", NULL );
413 }
414
415 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index )
416 {
417 producer_pango this = producer->child;
418
419 // Generate a frame
420 *frame = mlt_frame_init( );
421
422 // Obtain properties of frame and producer
423 mlt_properties properties = mlt_frame_properties( *frame );
424
425 // Set the producer on the frame properties
426 mlt_properties_set_data( properties, "producer_pango", this, 0, NULL, NULL );
427
428 // Refresh the pango image
429 refresh_image( *frame, 0, 0 );
430
431 // Set producer-specific frame properties
432 mlt_properties_set_int( properties, "progressive", 1 );
433 mlt_properties_set_double( properties, "aspect_ratio", mlt_properties_get_double( properties, "real_width" ) / mlt_properties_get_double( properties, "real_height" ) );
434
435 // Set alpha call back
436 ( *frame )->get_alpha_mask = producer_get_alpha_mask;
437
438 // Stack the get image callback
439 mlt_frame_push_get_image( *frame, producer_get_image );
440
441 // Update timecode on the frame we're creating
442 mlt_frame_set_position( *frame, mlt_producer_position( producer ) );
443
444 // Calculate the next timecode
445 mlt_producer_prepare_next( producer );
446
447 return 0;
448 }
449
450 static void producer_close( mlt_producer parent )
451 {
452 producer_pango this = parent->child;
453 free( this->image );
454 free( this->alpha );
455 free( this->fgcolor );
456 free( this->bgcolor );
457 free( this->markup );
458 free( this->text );
459 free( this->font );
460 parent->close = NULL;
461 mlt_producer_close( parent );
462 free( this );
463 }
464
465 static void pango_draw_background( GdkPixbuf *pixbuf, rgba_color bg )
466 {
467 int ww = gdk_pixbuf_get_width( pixbuf );
468 int hh = gdk_pixbuf_get_height( pixbuf );
469 uint8_t *p = gdk_pixbuf_get_pixels( pixbuf );
470 int i, j;
471
472 for ( j = 0; j < hh; j++ )
473 {
474 for ( i = 0; i < ww; i++ )
475 {
476 *p++ = bg.r;
477 *p++ = bg.g;
478 *p++ = bg.b;
479 *p++ = bg.a;
480 }
481 }
482 }
483
484 static GdkPixbuf *pango_get_pixbuf( const char *markup, const char *text, const char *font, rgba_color fg, rgba_color bg, int pad, int align )
485 {
486 PangoFT2FontMap *fontmap = (PangoFT2FontMap*) pango_ft2_font_map_new();
487 PangoContext *context = pango_ft2_font_map_create_context( fontmap );
488 PangoLayout *layout = pango_layout_new( context );
489 int w, h, x;
490 int i, j;
491 GdkPixbuf *pixbuf = NULL;
492 FT_Bitmap bitmap;
493 uint8_t *src = NULL;
494 uint8_t* dest = NULL;
495 int stride;
496
497 pango_ft2_font_map_set_resolution( fontmap, 72, 72 );
498 pango_layout_set_width( layout, -1 ); // set wrapping constraints
499 pango_layout_set_font_description( layout, pango_font_description_from_string( font ) );
500 // pango_layout_set_spacing( layout, space );
501 pango_layout_set_alignment( layout, ( PangoAlignment ) align );
502 if ( markup != NULL && strcmp( markup, "" ) != 0 )
503 pango_layout_set_markup( layout, markup, strlen( markup ) );
504 else if ( text != NULL && strcmp( text, "" ) != 0 )
505 pango_layout_set_text( layout, text, strlen( text ) );
506 else
507 return NULL;
508 pango_layout_get_pixel_size( layout, &w, &h );
509
510 pixbuf = gdk_pixbuf_new( GDK_COLORSPACE_RGB, TRUE /* has alpha */, 8, w + 2 * pad, h + 2 * pad );
511 pango_draw_background( pixbuf, bg );
512
513 stride = gdk_pixbuf_get_rowstride( pixbuf );
514
515 bitmap.width = w;
516 bitmap.pitch = 32 * ( ( w + 31 ) / 31 );
517 bitmap.rows = h;
518 bitmap.buffer = ( unsigned char * ) calloc( 1, h * bitmap.pitch );
519 bitmap.num_grays = 256;
520 bitmap.pixel_mode = ft_pixel_mode_grays;
521
522 pango_ft2_render_layout( &bitmap, layout, 0, 0 );
523
524 src = bitmap.buffer;
525 x = ( gdk_pixbuf_get_width( pixbuf ) - w - 2 * pad ) * align / 2 + pad;
526 dest = gdk_pixbuf_get_pixels( pixbuf ) + 4 * x + pad * stride;
527 for ( j = 0; j < h; j++ )
528 {
529 uint8_t *d = dest;
530 for ( i = 0; i < w; i++ )
531 {
532 float a = ( float ) bitmap.buffer[ j * bitmap.pitch + i ] / 255.0;
533 *d++ = ( int ) ( a * fg.r + ( 1 - a ) * bg.r );
534 *d++ = ( int ) ( a * fg.g + ( 1 - a ) * bg.g );
535 *d++ = ( int ) ( a * fg.b + ( 1 - a ) * bg.b );
536 *d++ = ( int ) ( a * fg.a + ( 1 - a ) * bg.a );
537 }
538 dest += stride;
539 }
540 free( bitmap.buffer );
541
542 g_object_unref( layout );
543 g_object_unref( context );
544 g_object_unref( fontmap );
545
546 return pixbuf;
547 }
548