X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmodules%2Fgtk2%2Fproducer_pango.c;h=deb8bd27c354c3020833a9ea315a418dee9692f3;hb=367fcf2b4515ec1c187de0c0c673382344ba73e6;hp=d113ce69cf9df99f98fc6070e3971a14eedf91b0;hpb=d8eef875f19feb30549855d3695a91df72c5c60f;p=mlt diff --git a/src/modules/gtk2/producer_pango.c b/src/modules/gtk2/producer_pango.c index d113ce69..deb8bd27 100644 --- a/src/modules/gtk2/producer_pango.c +++ b/src/modules/gtk2/producer_pango.c @@ -3,28 +3,64 @@ * Copyright (C) 2003-2004 Ushodaya Enterprises Limited * Author: Dan Dennedy * - * 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 library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * This library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "producer_pango.h" +#include #include +#include #include #include #include #include #include +#include +#include +#include + +typedef struct producer_pango_s *producer_pango; + +typedef enum +{ + pango_align_left = 0, + pango_align_center, + pango_align_right +} pango_align; + +static pthread_mutex_t pango_mutex = PTHREAD_MUTEX_INITIALIZER; + +struct producer_pango_s +{ + struct mlt_producer_s parent; + int width; + int height; + GdkPixbuf *pixbuf; + char *fgcolor; + char *bgcolor; + char *olcolor; + int align; + int pad; + int outline; + char *markup; + char *text; + char *font; + char *family; + int size; + int style; + int weight; +}; // special color type used by internal pango routines typedef struct @@ -36,30 +72,173 @@ typedef struct static int producer_get_frame( mlt_producer parent, mlt_frame_ptr frame, int index ); static void producer_close( mlt_producer parent ); static void pango_draw_background( GdkPixbuf *pixbuf, rgba_color bg ); -static GdkPixbuf *pango_get_pixbuf( const char *markup, rgba_color fg, rgba_color bg, int pad, int align ); +static GdkPixbuf *pango_get_pixbuf( const char *markup, const char *text, const char *font, + rgba_color fg, rgba_color bg, rgba_color ol, int pad, int align, char* family, int style, int weight, int size, int outline ); +static void fill_pixbuf( GdkPixbuf* pixbuf, FT_Bitmap* bitmap, int w, int h, int pad, int align, rgba_color fg, rgba_color bg ); +static void fill_pixbuf_with_outline( GdkPixbuf* pixbuf, FT_Bitmap* bitmap, int w, int h, int pad, int align, rgba_color fg, rgba_color bg, rgba_color ol, int outline ); + +/** Return nonzero if the two strings are equal, ignoring case, up to + the first n characters. +*/ +int strncaseeq(const char *s1, const char *s2, size_t n) +{ + for ( ; n > 0; n--) + { + if (tolower(*s1++) != tolower(*s2++)) + return 0; + } + return 1; +} + +/** Parse the alignment property. +*/ + +static int parse_alignment( char* align ) +{ + int ret = pango_align_left; + + if ( align == NULL ); + else if ( isdigit( align[ 0 ] ) ) + ret = atoi( align ); + else if ( align[ 0 ] == 'c' || align[ 0 ] == 'm' ) + ret = pango_align_center; + else if ( align[ 0 ] == 'r' ) + ret = pango_align_right; + + return ret; +} + +/** Parse the style property. +*/ + +static int parse_style( char* style ) +{ + int ret = PANGO_STYLE_NORMAL; + if( !strncmp(style, "italic", 6) ) + ret = PANGO_STYLE_ITALIC; + return ret; +} + +static PangoFT2FontMap *fontmap = NULL; -mlt_producer producer_pango_init( const char *markup ) +mlt_producer producer_pango_init( const char *filename ) { producer_pango this = calloc( sizeof( struct producer_pango_s ), 1 ); if ( this != NULL && mlt_producer_init( &this->parent, this ) == 0 ) { mlt_producer producer = &this->parent; - producer->get_frame = producer_get_frame; - producer->close = producer_close; - - this->markup = strdup( markup ); + pthread_mutex_lock( &pango_mutex ); + if ( fontmap == NULL ) + fontmap = (PangoFT2FontMap*) pango_ft2_font_map_new(); g_type_init(); + pthread_mutex_unlock( &pango_mutex ); + + producer->get_frame = producer_get_frame; + producer->close = ( mlt_destructor )producer_close; // Get the properties interface - mlt_properties properties = mlt_producer_properties( &this->parent ); + mlt_properties properties = MLT_PRODUCER_PROPERTIES( &this->parent ); // Set the default properties - mlt_properties_set_int( properties, "video_standard", mlt_video_standard_pal ); - mlt_properties_set_int( properties, "fgcolor", 0xffffffff ); - mlt_properties_set_int( properties, "bgcolor", 0x00000000 ); + mlt_properties_set( properties, "fgcolour", "0xffffffff" ); + mlt_properties_set( properties, "bgcolour", "0x00000000" ); + mlt_properties_set( properties, "olcolour", "0x00000000" ); mlt_properties_set_int( properties, "align", pango_align_left ); mlt_properties_set_int( properties, "pad", 0 ); + mlt_properties_set_int( properties, "outline", 0 ); + mlt_properties_set( properties, "text", "" ); + mlt_properties_set( properties, "font", NULL ); + mlt_properties_set( properties, "family", "Sans" ); + mlt_properties_set_int( properties, "size", 48 ); + mlt_properties_set( properties, "style", "normal" ); + mlt_properties_set( properties, "encoding", "UTF-8" ); + mlt_properties_set_int( properties, "weight", PANGO_WEIGHT_NORMAL ); + + if ( filename == NULL || ( filename && ( !strcmp( filename, "" ) + // workaround for old kdenlive countdown generator + || strstr( filename, "<producer>" ) ) ) ) + { + mlt_properties_set( properties, "markup", "" ); + } + else if ( filename[ 0 ] == '+' || strstr( filename, "/+" ) ) + { + char *copy = strdup( filename + 1 ); + char *markup = copy; + if ( strstr( markup, "/+" ) ) + markup = strstr( markup, "/+" ) + 2; + ( *strrchr( markup, '.' ) ) = '\0'; + while ( strchr( markup, '~' ) ) + ( *strchr( markup, '~' ) ) = '\n'; + mlt_properties_set( properties, "resource", filename ); + mlt_properties_set( properties, "markup", markup ); + free( copy ); + } + else if ( strstr( filename, ".mpl" ) ) + { + int i = 0; + mlt_properties contents = mlt_properties_load( filename ); + mlt_geometry key_frames = mlt_geometry_init( ); + struct mlt_geometry_item_s item; + mlt_properties_set( properties, "resource", filename ); + mlt_properties_set_data( properties, "contents", contents, 0, ( mlt_destructor )mlt_properties_close, NULL ); + mlt_properties_set_data( properties, "key_frames", key_frames, 0, ( mlt_destructor )mlt_geometry_close, NULL ); + + // Make sure we have at least one entry + if ( mlt_properties_get( contents, "0" ) == NULL ) + mlt_properties_set( contents, "0", "" ); + + for ( i = 0; i < mlt_properties_count( contents ); i ++ ) + { + char *name = mlt_properties_get_name( contents, i ); + char *value = mlt_properties_get_value( contents, i ); + while ( value != NULL && strchr( value, '~' ) ) + ( *strchr( value, '~' ) ) = '\n'; + item.frame = atoi( name ); + mlt_geometry_insert( key_frames, &item ); + } + mlt_geometry_interpolate( key_frames ); + } + else + { + FILE *f = fopen( filename, "r" ); + if ( f != NULL ) + { + char line[81]; + char *markup = NULL; + size_t size = 0; + line[80] = '\0'; + + while ( fgets( line, 80, f ) ) + { + size += strlen( line ) + 1; + if ( markup ) + { + markup = realloc( markup, size ); + strcat( markup, line ); + } + else + { + markup = strdup( line ); + } + } + fclose( f ); + + if ( markup[ strlen( markup ) - 1 ] == '\n' ) + markup[ strlen( markup ) - 1 ] = '\0'; + + mlt_properties_set( properties, "resource", filename ); + mlt_properties_set( properties, "markup", ( markup == NULL ? "" : markup ) ); + free( markup ); + } + else + { + producer->close = NULL; + mlt_producer_close( producer ); + producer = NULL; + free( this ); + } + } return producer; } @@ -67,184 +246,321 @@ mlt_producer producer_pango_init( const char *markup ) return NULL; } -static int producer_get_image( mlt_frame this, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable ) +static void set_string( char **string, const char *value, const char *fallback ) { - // Obtain properties of frame - mlt_properties properties = mlt_frame_properties( this ); - - // May need to know the size of the image to clone it - int size = 0; - - // Get the image - uint8_t *image = mlt_properties_get_data( properties, "image", &size ); - - // Get width and height - *width = mlt_properties_get_int( properties, "width" ); - *height = mlt_properties_get_int( properties, "height" ); - - // Clone if necessary - if ( writable ) + if ( value != NULL ) + { + free( *string ); + *string = strdup( value ); + } + else if ( *string == NULL && fallback != NULL ) { - // Clone our image - uint8_t *copy = malloc( size ); - memcpy( copy, image, size ); + *string = strdup( fallback ); + } + else if ( *string != NULL && fallback == NULL ) + { + free( *string ); + *string = NULL; + } +} - // We're going to pass the copy on - image = copy; +rgba_color parse_color( char *color, unsigned int color_int ) +{ + rgba_color result = { 0xff, 0xff, 0xff, 0xff }; - // Now update properties so we free the copy after - mlt_properties_set_data( properties, "image", copy, size, free, NULL ); + if ( !strcmp( color, "red" ) ) + { + result.r = 0xff; + result.g = 0x00; + result.b = 0x00; + } + else if ( !strcmp( color, "green" ) ) + { + result.r = 0x00; + result.g = 0xff; + result.b = 0x00; + } + else if ( !strcmp( color, "blue" ) ) + { + result.r = 0x00; + result.g = 0x00; + result.b = 0xff; + } + else if ( strcmp( color, "white" ) ) + { + result.r = ( color_int >> 24 ) & 0xff; + result.g = ( color_int >> 16 ) & 0xff; + result.b = ( color_int >> 8 ) & 0xff; + result.a = ( color_int ) & 0xff; } - // Pass on the image - *buffer = image; - - return 0; + return result; } -static uint8_t *producer_get_alpha_mask( mlt_frame this ) +/** Convert a string property to UTF-8 +*/ +static int iconv_utf8( mlt_properties properties, const char *prop_name, const char* encoding ) { - // Obtain properties of frame - mlt_properties properties = mlt_frame_properties( this ); + char *text = mlt_properties_get( properties, prop_name ); + int result = -1; + + iconv_t cd = iconv_open( "UTF-8", encoding ); + if ( cd != ( iconv_t )-1 ) + { + char *inbuf_p = text; + size_t inbuf_n = strlen( text ); + size_t outbuf_n = inbuf_n * 6; + char *outbuf = mlt_pool_alloc( outbuf_n ); + char *outbuf_p = outbuf; + + memset( outbuf, 0, outbuf_n ); - // Return the alpha mask - return mlt_properties_get_data( properties, "alpha", NULL ); + if ( text != NULL && strcmp( text, "" ) && iconv( cd, &inbuf_p, &inbuf_n, &outbuf_p, &outbuf_n ) != -1 ) + mlt_properties_set( properties, prop_name, outbuf ); + else + mlt_properties_set( properties, prop_name, "" ); + + mlt_pool_release( outbuf ); + iconv_close( cd ); + result = 0; + } + return result; } -static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index ) +static void refresh_image( mlt_frame frame, int width, int height ) { - producer_pango this = producer->child; - GdkPixbuf *pixbuf = NULL; - - // Generate a frame - *frame = mlt_frame_init( ); + // Pixbuf + GdkPixbuf *pixbuf = mlt_properties_get_data( MLT_FRAME_PROPERTIES( frame ), "pixbuf", NULL ); // Obtain properties of frame - mlt_properties properties = mlt_frame_properties( *frame ); + mlt_properties properties = MLT_FRAME_PROPERTIES( frame ); + + // Obtain the producer pango for this frame + producer_pango this = mlt_properties_get_data( properties, "producer_pango", NULL ); + + // Obtain the producer + mlt_producer producer = &this->parent; + + // Obtain the producer properties + mlt_properties producer_props = MLT_PRODUCER_PROPERTIES( producer ); + + // Get producer properties + char *fg = mlt_properties_get( producer_props, "fgcolour" ); + char *bg = mlt_properties_get( producer_props, "bgcolour" ); + char *ol = mlt_properties_get( producer_props, "olcolour" ); + int align = parse_alignment( mlt_properties_get( producer_props, "align" ) ); + int pad = mlt_properties_get_int( producer_props, "pad" ); + int outline = mlt_properties_get_int( producer_props, "outline" ); + char *markup = mlt_properties_get( producer_props, "markup" ); + char *text = mlt_properties_get( producer_props, "text" ); + char *font = mlt_properties_get( producer_props, "font" ); + char *family = mlt_properties_get( producer_props, "family" ); + int style = parse_style( mlt_properties_get( producer_props, "style" ) ); + char *encoding = mlt_properties_get( producer_props, "encoding" ); + int weight = mlt_properties_get_int( producer_props, "weight" ); + int size = mlt_properties_get_int( producer_props, "size" ); + int property_changed = 0; + + if ( pixbuf == NULL ) + { + // Check for file support + int position = mlt_properties_get_position( properties, "pango_position" ); + mlt_properties contents = mlt_properties_get_data( producer_props, "contents", NULL ); + mlt_geometry key_frames = mlt_properties_get_data( producer_props, "key_frames", NULL ); + struct mlt_geometry_item_s item; + if ( contents != NULL ) + { + char temp[ 20 ]; + mlt_geometry_prev_key( key_frames, &item, position ); + sprintf( temp, "%d", item.frame ); + markup = mlt_properties_get( contents, temp ); + } + + // See if any properties changed + property_changed = ( align != this->align ); + property_changed = property_changed || ( this->fgcolor == NULL || ( fg && strcmp( fg, this->fgcolor ) ) ); + property_changed = property_changed || ( this->bgcolor == NULL || ( bg && strcmp( bg, this->bgcolor ) ) ); + property_changed = property_changed || ( this->olcolor == NULL || ( ol && strcmp( ol, this->olcolor ) ) ); + property_changed = property_changed || ( pad != this->pad ); + property_changed = property_changed || ( outline != this->outline ); + property_changed = property_changed || ( markup && this->markup && strcmp( markup, this->markup ) ); + property_changed = property_changed || ( text && this->text && strcmp( text, this->text ) ); + property_changed = property_changed || ( font && this->font && strcmp( font, this->font ) ); + property_changed = property_changed || ( family && this->family && strcmp( family, this->family ) ); + property_changed = property_changed || ( weight != this->weight ); + property_changed = property_changed || ( style != this->style ); + property_changed = property_changed || ( size != this->size ); + + // Save the properties for next comparison + this->align = align; + this->pad = pad; + this->outline = outline; + set_string( &this->fgcolor, fg, "0xffffffff" ); + set_string( &this->bgcolor, bg, "0x00000000" ); + set_string( &this->olcolor, ol, "0x00000000" ); + set_string( &this->markup, markup, NULL ); + set_string( &this->text, text, NULL ); + set_string( &this->font, font, NULL ); + set_string( &this->family, family, "Sans" ); + this->weight = weight; + this->style = style; + this->size = size; + } - // optimization for subsequent iterations on single picture - if ( this->image != NULL ) + if ( pixbuf == NULL && property_changed ) { - // Set width/height - mlt_properties_set_int( properties, "width", this->width ); - mlt_properties_set_int( properties, "height", this->height ); + rgba_color fgcolor = parse_color( this->fgcolor, mlt_properties_get_int( producer_props, "fgcolour" ) ); + rgba_color bgcolor = parse_color( this->bgcolor, mlt_properties_get_int( producer_props, "bgcolour" ) ); + rgba_color olcolor = parse_color( this->olcolor, mlt_properties_get_int( producer_props, "olcolour" ) ); + + if ( this->pixbuf ) + g_object_unref( this->pixbuf ); + this->pixbuf = NULL; - // if picture sequence pass the image and alpha data without destructor - mlt_properties_set_data( properties, "image", this->image, 0, NULL, NULL ); - mlt_properties_set_data( properties, "alpha", this->alpha, 0, NULL, NULL ); + // Convert from specified encoding to UTF-8 + if ( encoding != NULL && !strncaseeq( encoding, "utf-8", 5 ) && !strncaseeq( encoding, "utf8", 4 ) ) + { + if ( markup != NULL && iconv_utf8( producer_props, "markup", encoding ) != -1 ) + { + markup = mlt_properties_get( producer_props, "markup" ); + set_string( &this->markup, markup, NULL ); + } + if ( text != NULL && iconv_utf8( producer_props, "text", encoding ) != -1 ) + { + text = mlt_properties_get( producer_props, "text" ); + set_string( &this->text, text, NULL ); + } + } + + // Render the title + pixbuf = pango_get_pixbuf( markup, text, font, fgcolor, bgcolor, olcolor, pad, align, family, style, weight, size, outline ); - // Set alpha mask call back - ( *frame )->get_alpha_mask = producer_get_alpha_mask; + if ( pixbuf != NULL ) + { + // Register this pixbuf for destruction and reuse + mlt_properties_set_data( producer_props, "pixbuf", pixbuf, 0, ( mlt_destructor )g_object_unref, NULL ); + g_object_ref( pixbuf ); + mlt_properties_set_data( MLT_FRAME_PROPERTIES( frame ), "pixbuf", pixbuf, 0, ( mlt_destructor )g_object_unref, NULL ); - // Stack the get image callback - mlt_frame_push_get_image( *frame, producer_get_image ); + mlt_properties_set_int( producer_props, "real_width", gdk_pixbuf_get_width( pixbuf ) ); + mlt_properties_set_int( producer_props, "real_height", gdk_pixbuf_get_height( pixbuf ) ); + // Store the width/height of the pixbuf temporarily + this->width = gdk_pixbuf_get_width( pixbuf ); + this->height = gdk_pixbuf_get_height( pixbuf ); + } } - else + else if ( pixbuf == NULL && width > 0 && ( this->pixbuf == NULL || width != this->width || height != this->height ) ) { - // Obtain properties of producer - mlt_properties props = mlt_producer_properties( producer ); - - // Get properties - int fg = mlt_properties_get_int( props, "fgcolor" ); - int bg = mlt_properties_get_int( props, "bgcolor" ); - int align = mlt_properties_get_int( props, "align" ); - int pad = mlt_properties_get_int( props, "pad" ); - rgba_color fgcolor = - { - ( fg & 0xff000000 ) >> 24, - ( fg & 0x00ff0000 ) >> 16, - ( fg & 0x0000ff00 ) >> 8, - ( fg & 0x000000ff ) - }; - rgba_color bgcolor = - { - ( bg & 0xff000000 ) >> 24, - ( bg & 0x00ff0000 ) >> 16, - ( bg & 0x0000ff00 ) >> 8, - ( bg & 0x000000ff ) - }; - - // Render the title - pixbuf = pango_get_pixbuf( this->markup, fgcolor, bgcolor, pad, align ); + if ( this->pixbuf ) + g_object_unref( this->pixbuf ); + this->pixbuf = NULL; + pixbuf = mlt_properties_get_data( producer_props, "pixbuf", NULL ); } - // If we have a pixbuf - if ( pixbuf ) + // If we have a pixbuf and a valid width + if ( pixbuf && width > 0 ) { - // Scale to adjust for sample aspect ratio - if ( mlt_properties_get_int( properties, "video_standard" ) == mlt_video_standard_pal ) - { - GdkPixbuf *temp = pixbuf; - GdkPixbuf *scaled = gdk_pixbuf_scale_simple( pixbuf, - (gint) ( (float) gdk_pixbuf_get_width( pixbuf ) * 54.0/59.0), - gdk_pixbuf_get_height( pixbuf ), GDK_INTERP_HYPER ); - pixbuf = scaled; - g_object_unref( temp ); - } - else - { - GdkPixbuf *temp = pixbuf; - GdkPixbuf *scaled = gdk_pixbuf_scale_simple( pixbuf, - (gint) ( (float) gdk_pixbuf_get_width( pixbuf ) * 11.0/10.0 ), - gdk_pixbuf_get_height( pixbuf ), GDK_INTERP_HYPER ); - pixbuf = scaled; - g_object_unref( temp ); - } + char *interps = mlt_properties_get( properties, "rescale.interp" ); + int interp = GDK_INTERP_BILINEAR; + + if ( strcmp( interps, "nearest" ) == 0 ) + interp = GDK_INTERP_NEAREST; + else if ( strcmp( interps, "tiles" ) == 0 ) + interp = GDK_INTERP_TILES; + else if ( strcmp( interps, "hyper" ) == 0 || strcmp( interps, "bicubic" ) == 0 ) + interp = GDK_INTERP_HYPER; + +// fprintf(stderr,"%s: scaling from %dx%d to %dx%d\n", __FILE__, this->width, this->height, width, height); + + // Note - the original pixbuf is already safe and ready for destruction + this->pixbuf = gdk_pixbuf_scale_simple( pixbuf, width, height, interp ); // Store width and height - this->width = gdk_pixbuf_get_width( pixbuf ); - this->height = gdk_pixbuf_get_height( pixbuf ); + this->width = width; + this->height = height; + } - // Allocate/define image and alpha - uint8_t *image = malloc( this->width * this->height * 2 ); - uint8_t *alpha = NULL; + // Set width/height + mlt_properties_set_int( properties, "width", this->width ); + mlt_properties_set_int( properties, "height", this->height ); + mlt_properties_set_int( properties, "real_width", mlt_properties_get_int( producer_props, "real_width" ) ); + mlt_properties_set_int( properties, "real_height", mlt_properties_get_int( producer_props, "real_height" ) ); +} - // Extract YUV422 and alpha - if ( gdk_pixbuf_get_has_alpha( pixbuf ) ) - { - // Allocate the alpha mask - alpha = malloc( this->width * this->height ); - - // Convert the image - mlt_convert_rgb24a_to_yuv422( gdk_pixbuf_get_pixels( pixbuf ), - this->width, this->height, - gdk_pixbuf_get_rowstride( pixbuf ), - image, alpha ); - } - else - { - // No alpha to extract - mlt_convert_rgb24_to_yuv422( gdk_pixbuf_get_pixels( pixbuf ), - this->width, this->height, - gdk_pixbuf_get_rowstride( pixbuf ), - image ); - } +static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable ) +{ + int error = 0; + producer_pango this = ( producer_pango ) mlt_frame_pop_service( frame ); - // Finished with pixbuf now - g_object_unref( pixbuf ); + // Obtain properties of frame + mlt_properties properties = MLT_FRAME_PROPERTIES( frame ); - // Set width/height of frame - mlt_properties_set_int( properties, "width", this->width ); - mlt_properties_set_int( properties, "height", this->height ); + *width = mlt_properties_get_int( properties, "rescale_width" ); + *height = mlt_properties_get_int( properties, "rescale_height" ); - // if single picture, reference the image and alpha in the producer - this->image = image; - this->alpha = alpha; + mlt_service_lock( MLT_PRODUCER_SERVICE( &this->parent ) ); - // pass the image and alpha data without destructor - mlt_properties_set_data( properties, "image", image, 0, NULL, NULL ); - mlt_properties_set_data( properties, "alpha", alpha, 0, NULL, NULL ); + // Refresh the image + pthread_mutex_lock( &pango_mutex ); + refresh_image( frame, *width, *height ); - // Set alpha call back - ( *frame )->get_alpha_mask = producer_get_alpha_mask; + // Get width and height + *width = this->width; + *height = this->height; + *format = mlt_image_rgb24a; - // Push the get_image method - mlt_frame_push_get_image( *frame, producer_get_image ); + // Always clone here to allow 'animated' text + if ( this->pixbuf ) + { + // Clone the image + int image_size = this->width * this->height * 4; + *buffer = mlt_pool_alloc( image_size ); + memcpy( *buffer, gdk_pixbuf_get_pixels( this->pixbuf ), image_size ); + + // Now update properties so we free the copy after + mlt_frame_set_image( frame, *buffer, image_size, mlt_pool_release ); } + else + { + error = 1; + } + + pthread_mutex_unlock( &pango_mutex ); + mlt_service_unlock( MLT_PRODUCER_SERVICE( &this->parent ) ); + + return error; +} + +static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index ) +{ + producer_pango this = producer->child; + + // Generate a frame + *frame = mlt_frame_init( MLT_PRODUCER_SERVICE( producer ) ); + + // Obtain properties of frame and producer + mlt_properties properties = MLT_FRAME_PROPERTIES( *frame ); + + // Set the producer on the frame properties + mlt_properties_set_data( properties, "producer_pango", this, 0, NULL, NULL ); // Update timecode on the frame we're creating - mlt_frame_set_timecode( *frame, mlt_producer_position( producer ) ); + mlt_frame_set_position( *frame, mlt_producer_position( producer ) ); + mlt_properties_set_position( properties, "pango_position", mlt_producer_frame( producer ) ); + + // Refresh the pango image + pthread_mutex_lock( &pango_mutex ); + refresh_image( *frame, 0, 0 ); + pthread_mutex_unlock( &pango_mutex ); + + // Set producer-specific frame properties + mlt_properties_set_int( properties, "progressive", 1 ); + mlt_properties_set_double( properties, "aspect_ratio", 1 ); + + // Stack the get image callback + mlt_frame_push_service( *frame, this ); + mlt_frame_push_get_image( *frame, producer_get_image ); // Calculate the next timecode mlt_producer_prepare_next( producer ); @@ -255,12 +571,15 @@ static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int i static void producer_close( mlt_producer parent ) { producer_pango this = parent->child; - if ( this->markup ) - free( this->markup ); - if ( this->image ) - free( this->image ); - if ( this->alpha ) - free( this->alpha ); + if ( this->pixbuf ) + g_object_unref( this->pixbuf ); + free( this->fgcolor ); + free( this->bgcolor ); + free( this->olcolor ); + free( this->markup ); + free( this->text ); + free( this->font ); + free( this->family ); parent->close = NULL; mlt_producer_close( parent ); free( this ); @@ -285,64 +604,236 @@ static void pango_draw_background( GdkPixbuf *pixbuf, rgba_color bg ) } } -static GdkPixbuf *pango_get_pixbuf( const char *markup, rgba_color fg, rgba_color bg, int pad, int align ) +static GdkPixbuf *pango_get_pixbuf( const char *markup, const char *text, const char *font, rgba_color fg, rgba_color bg, rgba_color ol, int pad, int align, char* family, int style, int weight, int size, int outline ) { - PangoFT2FontMap *fontmap = (PangoFT2FontMap*) pango_ft2_font_map_new(); PangoContext *context = pango_ft2_font_map_create_context( fontmap ); PangoLayout *layout = pango_layout_new( context ); -// PangoFontDescription *font; - int w, h, x; - int i, j; + int w, h; GdkPixbuf *pixbuf = NULL; FT_Bitmap bitmap; - uint8_t *src = NULL; - uint8_t* dest = NULL; - int stride; + PangoFontDescription *desc = NULL; + + if( font ) + { + // Support for deprecated "font" property. + desc = pango_font_description_from_string( font ); + pango_ft2_font_map_set_resolution( fontmap, 72, 72 ); + } + else + { + desc = pango_font_description_from_string( family ); + pango_font_description_set_size( desc, PANGO_SCALE * size ); + pango_font_description_set_style( desc, (PangoStyle) style ); + } + + pango_font_description_set_weight( desc, ( PangoWeight ) weight ); - pango_ft2_font_map_set_resolution( fontmap, 72, 72 ); pango_layout_set_width( layout, -1 ); // set wrapping constraints -// pango_layout_set_font_description( layout, "Sans 48" ); -// pango_layout_set_spacing( layout, space ); + pango_layout_set_font_description( layout, desc ); pango_layout_set_alignment( layout, ( PangoAlignment ) align ); - pango_layout_set_markup( layout, markup, (markup == NULL ? 0 : strlen( markup ) ) ); + if ( markup != NULL && strcmp( markup, "" ) != 0 ) + { + pango_layout_set_markup( layout, markup, strlen( markup ) ); + } + else if ( text != NULL && strcmp( text, "" ) != 0 ) + { + // Replace all ~'s with a line feed (silly convention, but handy) + char *copy = strdup( text ); + while ( strchr( copy, '~' ) ) + ( *strchr( copy, '~' ) ) = '\n'; + pango_layout_set_text( layout, copy, strlen( copy ) ); + free( copy ); + } + else + { + // Pango doesn't like empty strings + pango_layout_set_text( layout, " ", 2 ); + } pango_layout_get_pixel_size( layout, &w, &h ); + if ( pad == 0 ) + pad = 1; + pixbuf = gdk_pixbuf_new( GDK_COLORSPACE_RGB, TRUE /* has alpha */, 8, w + 2 * pad, h + 2 * pad ); pango_draw_background( pixbuf, bg ); - stride = gdk_pixbuf_get_rowstride( pixbuf ); - bitmap.width = w; bitmap.pitch = 32 * ( ( w + 31 ) / 31 ); bitmap.rows = h; - bitmap.buffer = ( unsigned char * ) calloc( 1, h * bitmap.pitch ); + bitmap.buffer = mlt_pool_alloc( h * bitmap.pitch ); bitmap.num_grays = 256; bitmap.pixel_mode = ft_pixel_mode_grays; + memset( bitmap.buffer, 0, h * bitmap.pitch ); + pango_ft2_render_layout( &bitmap, layout, 0, 0 ); - src = bitmap.buffer; - x = ( gdk_pixbuf_get_width( pixbuf ) - w - 2 * pad ) * align / 2 + pad; - dest = gdk_pixbuf_get_pixels( pixbuf ) + 4 * x + pad * stride; - for ( j = 0; j < h; j++ ) + if ( outline ) { - uint8_t *d = dest; - for ( i = 0; i < w; i++ ) - { - float a = ( float ) bitmap.buffer[ j * bitmap.pitch + i ] / 255.0; - *d++ = ( int ) ( a * fg.r + ( 1 - a ) * bg.r ); - *d++ = ( int ) ( a * fg.g + ( 1 - a ) * bg.g ); - *d++ = ( int ) ( a * fg.b + ( 1 - a ) * bg.b ); - *d++ = ( int ) ( a * fg.a + ( 1 - a ) * bg.a ); - } - dest += stride; + fill_pixbuf_with_outline( pixbuf, &bitmap, w, h, pad, align, fg, bg, ol, outline ); + } + else + { + fill_pixbuf( pixbuf, &bitmap, w, h, pad, align, fg, bg ); } - free( bitmap.buffer ); + mlt_pool_release( bitmap.buffer ); + pango_font_description_free( desc ); g_object_unref( layout ); g_object_unref( context ); - g_object_unref( fontmap ); return pixbuf; } +static void fill_pixbuf( GdkPixbuf* pixbuf, FT_Bitmap* bitmap, int w, int h, int pad, int align, rgba_color fg, rgba_color bg ) +{ + int stride = gdk_pixbuf_get_rowstride( pixbuf ); + uint8_t* src = bitmap->buffer; + int x = ( gdk_pixbuf_get_width( pixbuf ) - w - 2 * pad ) * align / 2 + pad; + uint8_t* dest = gdk_pixbuf_get_pixels( pixbuf ) + 4 * x + pad * stride; + int j = h; + int i = 0; + uint8_t *d, *s, a; + + while( j -- ) + { + d = dest; + s = src; + i = w; + while( i -- ) + { + a = *s ++; + *d++ = ( a * fg.r + ( 255 - a ) * bg.r ) >> 8; + *d++ = ( a * fg.g + ( 255 - a ) * bg.g ) >> 8; + *d++ = ( a * fg.b + ( 255 - a ) * bg.b ) >> 8; + *d++ = ( a * fg.a + ( 255 - a ) * bg.a ) >> 8; + } + dest += stride; + src += bitmap->pitch; + } +} + +static void fill_pixbuf_with_outline( GdkPixbuf* pixbuf, FT_Bitmap* bitmap, int w, int h, int pad, int align, rgba_color fg, rgba_color bg, rgba_color ol, int outline ) +{ + int stride = gdk_pixbuf_get_rowstride( pixbuf ); + int x = ( gdk_pixbuf_get_width( pixbuf ) - w - 2 * pad ) * align / 2 + pad; + uint8_t* dest = gdk_pixbuf_get_pixels( pixbuf ) + 4 * x + pad * stride; + int j ,i; + uint8_t *d = NULL; + float a_ol = 0; + float a_fg = 0; + + for ( j = 0; j < h; j++ ) + { + d = dest; + for ( i = 0; i < w; i++ ) + { +#define geta(x, y) (float) bitmap->buffer[ (y) * bitmap->pitch + (x) ] / 255.0 + + a_ol = geta(i, j); + // One pixel fake circle + if ( i > 0 ) + a_ol = MAX( a_ol, geta(i - 1, j) ); + if ( i < w - 1 ) + a_ol = MAX( a_ol, geta(i + 1, j) ); + if ( j > 0 ) + a_ol = MAX( a_ol, geta(i, j - 1) ); + if ( j < h - 1 ) + a_ol = MAX( a_ol, geta(i, j + 1) ); + if ( outline >= 2 ) { + // Two pixels fake circle + if ( i > 1 ) { + a_ol = MAX( a_ol, geta(i - 2, j) ); + if ( j > 0 ) + a_ol = MAX( a_ol, geta(i - 2, j - 1) ); + if ( j < h - 1 ) + a_ol = MAX( a_ol, geta(i - 2, j + 1) ); + } + if ( i > 0 ) { + if ( j > 0 ) + a_ol = MAX( a_ol, geta(i - 1, j - 1) ); + if ( j > 1 ) + a_ol = MAX( a_ol, geta(i - 1, j - 2) ); + if ( j < h - 1 ) + a_ol = MAX( a_ol, geta(i - 1, j + 1) ); + if ( j < h - 2 ) + a_ol = MAX( a_ol, geta(i - 1, j + 2) ); + } + if ( j > 1 ) + a_ol = MAX( a_ol, geta(i, j - 2) ); + if ( j < h - 2 ) + a_ol = MAX( a_ol, geta(i, j + 2) ); + if ( i < w - 1 ) { + if ( j > 0 ) + a_ol = MAX( a_ol, geta(i + 1, j - 1) ); + if ( j > 1 ) + a_ol = MAX( a_ol, geta(i + 1, j - 2) ); + if ( j < h - 1 ) + a_ol = MAX( a_ol, geta(i + 1, j + 1) ); + if ( j < h - 2 ) + a_ol = MAX( a_ol, geta(i + 1, j + 2) ); + } + if ( i < w - 2 ) { + a_ol = MAX( a_ol, geta(i + 2, j) ); + if ( j > 0 ) + a_ol = MAX( a_ol, geta(i + 2, j - 1) ); + if ( j < h - 1 ) + a_ol = MAX( a_ol, geta(i + 2, j + 1) ); + } + } + if ( outline >= 3 ) { + // Three pixels fake circle + if ( i > 2 ) { + a_ol = MAX( a_ol, geta(i - 3, j) ); + if ( j > 0 ) + a_ol = MAX( a_ol, geta(i - 3, j - 1) ); + if ( j < h - 1 ) + a_ol = MAX( a_ol, geta(i - 3, j + 1) ); + } + if ( i > 1 ) { + if ( j > 1 ) + a_ol = MAX( a_ol, geta(i - 2, j - 2) ); + if ( j < h - 2 ) + a_ol = MAX( a_ol, geta(i - 2, j + 2) ); + } + if ( i > 0 ) { + if ( j > 2 ) + a_ol = MAX( a_ol, geta(i - 1, j - 3) ); + if ( j < h - 3 ) + a_ol = MAX( a_ol, geta(i - 1, j + 3) ); + } + if ( j > 2 ) + a_ol = MAX( a_ol, geta(i, j - 3) ); + if ( j < h - 3 ) + a_ol = MAX( a_ol, geta(i, j + 3) ); + if ( i < w - 1 ) { + if ( j > 2 ) + a_ol = MAX( a_ol, geta(i + 1, j - 3) ); + if ( j < h - 3 ) + a_ol = MAX( a_ol, geta(i + 1, j + 3) ); + } + if ( i < w - 2 ) { + if ( j > 1 ) + a_ol = MAX( a_ol, geta(i + 2, j - 2) ); + if ( j < h - 2 ) + a_ol = MAX( a_ol, geta(i + 2, j + 2) ); + } + if ( i < w - 3 ) { + a_ol = MAX( a_ol, geta(i + 3, j) ); + if ( j > 0 ) + a_ol = MAX( a_ol, geta(i + 3, j - 1) ); + if ( j < h - 1 ) + a_ol = MAX( a_ol, geta(i + 3, j + 1) ); + } + } + + a_fg = ( float ) bitmap->buffer[ j * bitmap->pitch + i ] / 255.0; + + *d++ = ( int ) ( a_fg * fg.r + ( 1 - a_fg ) * ( a_ol * ol.r + ( 1 - a_ol ) * bg.r ) ); + *d++ = ( int ) ( a_fg * fg.g + ( 1 - a_fg ) * ( a_ol * ol.g + ( 1 - a_ol ) * bg.g ) ); + *d++ = ( int ) ( a_fg * fg.b + ( 1 - a_fg ) * ( a_ol * ol.b + ( 1 - a_ol ) * bg.b ) ); + *d++ = ( int ) ( a_fg * fg.a + ( 1 - a_fg ) * ( a_ol * ol.a + ( 1 - a_ol ) * bg.a ) ); + } + dest += stride; + } +}