]> git.sesse.net Git - vlc/blob - modules/codec/libass.c
upnp: change item b_net and i_type
[vlc] / modules / codec / libass.c
1 /*****************************************************************************
2  * SSA/ASS subtitle decoder using libass.
3  *****************************************************************************
4  * Copyright (C) 2008-2009 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 #   include "config.h"
30 #endif
31
32 #include <string.h>
33 #include <limits.h>
34 #include <assert.h>
35 #include <math.h>
36
37 #include <vlc_common.h>
38 #include <vlc_plugin.h>
39 #include <vlc_codec.h>
40 #include <vlc_input.h>
41 #include <vlc_dialog.h>
42
43 #include <ass/ass.h>
44
45 #if defined(_WIN32)
46 #   include <vlc_charset.h>
47 #endif
48
49 /*****************************************************************************
50  * Module descriptor
51  *****************************************************************************/
52 static int  Create ( vlc_object_t * );
53 static void Destroy( vlc_object_t * );
54
55 vlc_module_begin ()
56     set_shortname( N_("Subtitles (advanced)"))
57     set_description( N_("Subtitle renderers using libass") )
58     set_capability( "decoder", 100 )
59     set_category( CAT_INPUT )
60     set_subcategory( SUBCAT_INPUT_SCODEC )
61     set_callbacks( Create, Destroy )
62 vlc_module_end ()
63
64 /*****************************************************************************
65  * Local prototypes
66  *****************************************************************************/
67 static subpicture_t *DecodeBlock( decoder_t *, block_t ** );
68
69 /* */
70 struct decoder_sys_t
71 {
72     mtime_t        i_max_stop;
73
74     /* The following fields of decoder_sys_t are shared between decoder and spu units */
75     vlc_mutex_t    lock;
76     int            i_refcount;
77
78     /* */
79     ASS_Library    *p_library;
80     ASS_Renderer   *p_renderer;
81     video_format_t fmt;
82
83     /* */
84     ASS_Track      *p_track;
85 };
86 static void DecSysRelease( decoder_sys_t *p_sys );
87 static void DecSysHold( decoder_sys_t *p_sys );
88
89 /* */
90 static int SubpictureValidate( subpicture_t *,
91                                bool, const video_format_t *,
92                                bool, const video_format_t *,
93                                mtime_t );
94 static void SubpictureUpdate( subpicture_t *,
95                               const video_format_t *,
96                               const video_format_t *,
97                               mtime_t );
98 static void SubpictureDestroy( subpicture_t * );
99
100 struct subpicture_updater_sys_t
101 {
102     decoder_sys_t *p_dec_sys;
103     void          *p_subs_data;
104     int           i_subs_len;
105     mtime_t       i_pts;
106
107     ASS_Image     *p_img;
108 };
109
110 typedef struct
111 {
112     int x0;
113     int y0;
114     int x1;
115     int y1;
116 } rectangle_t;
117
118 static int BuildRegions( rectangle_t *p_region, int i_max_region, ASS_Image *p_img_list, int i_width, int i_height );
119 static void RegionDraw( subpicture_region_t *p_region, ASS_Image *p_img );
120
121 //#define DEBUG_REGION
122
123 /*****************************************************************************
124  * Create: Open libass decoder.
125  *****************************************************************************/
126 static int Create( vlc_object_t *p_this )
127 {
128     decoder_t *p_dec = (decoder_t *)p_this;
129     decoder_sys_t *p_sys;
130
131     if( p_dec->fmt_in.i_codec != VLC_CODEC_SSA )
132         return VLC_EGENERIC;
133
134     p_dec->pf_decode_sub = DecodeBlock;
135
136     p_dec->p_sys = p_sys = malloc( sizeof( decoder_sys_t ) );
137     if( !p_sys )
138         return VLC_ENOMEM;
139
140     /* */
141     vlc_mutex_init( &p_sys->lock );
142     p_sys->i_refcount = 1;
143     memset( &p_sys->fmt, 0, sizeof(p_sys->fmt) );
144     p_sys->i_max_stop = VLC_TS_INVALID;
145     p_sys->p_library  = NULL;
146     p_sys->p_renderer = NULL;
147     p_sys->p_track    = NULL;
148
149     /* Create libass library */
150     ASS_Library *p_library = p_sys->p_library = ass_library_init();
151     if( !p_library )
152     {
153         msg_Warn( p_dec, "Libass library creation failed" );
154         DecSysRelease( p_sys );
155         return VLC_EGENERIC;
156     }
157
158     /* load attachments */
159     input_attachment_t  **pp_attachments;
160     int                   i_attachments;
161     if( decoder_GetInputAttachments( p_dec, &pp_attachments, &i_attachments ))
162     {
163         i_attachments = 0;
164         pp_attachments = NULL;
165     }
166     for( int k = 0; k < i_attachments; k++ )
167     {
168         input_attachment_t *p_attach = pp_attachments[k];
169
170         bool found = false;
171
172         /* Check mimetype*/
173         if( !strcasecmp( p_attach->psz_mime, "application/x-truetype-font" ) )
174             found = true;
175         /* Then extension */
176         else if( !found && strlen( p_attach->psz_name ) > 4 )
177         {
178             char *ext = p_attach->psz_name + strlen( p_attach->psz_name ) - 4;
179
180             if( !strcasecmp( ext, ".ttf" ) || !strcasecmp( ext, ".otf" ) || !strcasecmp( ext, ".ttc" ) )
181                 found = true;
182         }
183
184         if( found )
185         {
186             msg_Dbg( p_dec, "adding embedded font %s", p_attach->psz_name );
187
188             ass_add_font( p_sys->p_library, p_attach->psz_name, p_attach->p_data, p_attach->i_data );
189         }
190         vlc_input_attachment_Delete( p_attach );
191     }
192     free( pp_attachments );
193
194     ass_set_extract_fonts( p_library, true );
195     ass_set_style_overrides( p_library, NULL );
196
197     /* Create the renderer */
198     ASS_Renderer *p_renderer = p_sys->p_renderer = ass_renderer_init( p_library );
199     if( !p_renderer )
200     {
201         msg_Warn( p_dec, "Libass renderer creation failed" );
202         DecSysRelease( p_sys );
203         return VLC_EGENERIC;
204     }
205
206     ass_set_use_margins( p_renderer, false);
207     //if( false )
208     //    ass_set_margins( p_renderer, int t, int b, int l, int r);
209     ass_set_hinting( p_renderer, ASS_HINTING_LIGHT );
210     ass_set_font_scale( p_renderer, 1.0 );
211     ass_set_line_spacing( p_renderer, 0.0 );
212
213 #if defined( __ANDROID__ )
214     const char *psz_font = "/system/fonts/DroidSans-Bold.ttf";
215     const char *psz_family = "Droid Sans Bold";
216 #else
217     const char *psz_font = NULL; /* We don't ship a default font with VLC */
218     const char *psz_family = "Arial"; /* Use Arial if we can't find anything more suitable */
219 #endif
220
221 #ifdef HAVE_FONTCONFIG
222 #if defined(_WIN32) || defined(__APPLE__)
223     dialog_progress_bar_t *p_dialog =
224         dialog_ProgressCreate( p_dec,
225                                _("Building font cache"),
226                                _( "Please wait while your font cache is rebuilt.\n"
227                                   "This should take less than a minute." ), NULL );
228 #endif
229     ass_set_fonts( p_renderer, psz_font, psz_family, true, NULL, 1 );  // setup default font/family
230 #if defined(_WIN32) || defined(__APPLE__)
231     if( p_dialog )
232     {
233         dialog_ProgressSet( p_dialog, NULL, 1.0 );
234         dialog_ProgressDestroy( p_dialog );
235     }
236 #endif
237 #else
238     /* FIXME you HAVE to give him a font if no fontconfig */
239     ass_set_fonts( p_renderer, psz_font, psz_family, false, NULL, 1 );
240 #endif
241
242     /* Add a track */
243     ASS_Track *p_track = p_sys->p_track = ass_new_track( p_sys->p_library );
244     if( !p_track )
245     {
246         DecSysRelease( p_sys );
247         return VLC_EGENERIC;
248     }
249     ass_process_codec_private( p_track, p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra );
250
251     p_dec->fmt_out.i_cat = SPU_ES;
252     p_dec->fmt_out.i_codec = VLC_CODEC_RGBA;
253
254     return VLC_SUCCESS;
255 }
256
257 /*****************************************************************************
258  * Destroy: finish
259  *****************************************************************************/
260 static void Destroy( vlc_object_t *p_this )
261 {
262     decoder_t *p_dec = (decoder_t *)p_this;
263
264     DecSysRelease( p_dec->p_sys );
265 }
266
267 static void DecSysHold( decoder_sys_t *p_sys )
268 {
269     vlc_mutex_lock( &p_sys->lock );
270     p_sys->i_refcount++;
271     vlc_mutex_unlock( &p_sys->lock );
272 }
273 static void DecSysRelease( decoder_sys_t *p_sys )
274 {
275     /* */
276     vlc_mutex_lock( &p_sys->lock );
277     p_sys->i_refcount--;
278     if( p_sys->i_refcount > 0 )
279     {
280         vlc_mutex_unlock( &p_sys->lock );
281         return;
282     }
283     vlc_mutex_unlock( &p_sys->lock );
284     vlc_mutex_destroy( &p_sys->lock );
285
286     if( p_sys->p_track )
287         ass_free_track( p_sys->p_track );
288     if( p_sys->p_renderer )
289         ass_renderer_done( p_sys->p_renderer );
290     if( p_sys->p_library )
291         ass_library_done( p_sys->p_library );
292
293     free( p_sys );
294 }
295
296 /****************************************************************************
297  * DecodeBlock:
298  ****************************************************************************/
299 static subpicture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
300 {
301     decoder_sys_t *p_sys = p_dec->p_sys;
302
303     subpicture_t *p_spu = NULL;
304     block_t *p_block;
305
306     if( !pp_block || *pp_block == NULL )
307         return NULL;
308
309     p_block = *pp_block;
310     if( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
311     {
312         p_sys->i_max_stop = VLC_TS_INVALID;
313         block_Release( p_block );
314         return NULL;
315     }
316     *pp_block = NULL;
317
318     if( p_block->i_buffer == 0 || p_block->p_buffer[0] == '\0' )
319     {
320         block_Release( p_block );
321         return NULL;
322     }
323
324     subpicture_updater_sys_t *p_spu_sys = malloc( sizeof(*p_spu_sys) );
325     if( !p_spu_sys )
326     {
327         block_Release( p_block );
328         return NULL;
329     }
330
331     subpicture_updater_t updater = {
332         .pf_validate = SubpictureValidate,
333         .pf_update   = SubpictureUpdate,
334         .pf_destroy  = SubpictureDestroy,
335         .p_sys       = p_spu_sys,
336     };
337     p_spu = decoder_NewSubpicture( p_dec, &updater );
338     if( !p_spu )
339     {
340         msg_Warn( p_dec, "can't get spu buffer" );
341         free( p_spu_sys );
342         block_Release( p_block );
343         return NULL;
344     }
345
346     p_spu_sys->p_img = NULL;
347     p_spu_sys->p_dec_sys = p_sys;
348     p_spu_sys->i_subs_len = p_block->i_buffer;
349     p_spu_sys->p_subs_data = malloc( p_block->i_buffer );
350     p_spu_sys->i_pts = p_block->i_pts;
351     if( !p_spu_sys->p_subs_data )
352     {
353         subpicture_Delete( p_spu );
354         block_Release( p_block );
355         return NULL;
356     }
357     memcpy( p_spu_sys->p_subs_data, p_block->p_buffer,
358             p_block->i_buffer );
359
360     p_spu->i_start = p_block->i_pts;
361     p_spu->i_stop = __MAX( p_sys->i_max_stop, p_block->i_pts + p_block->i_length );
362     p_spu->b_ephemer = true;
363     p_spu->b_absolute = true;
364
365     p_sys->i_max_stop = p_spu->i_stop;
366
367     vlc_mutex_lock( &p_sys->lock );
368     if( p_sys->p_track )
369     {
370         ass_process_chunk( p_sys->p_track, p_spu_sys->p_subs_data, p_spu_sys->i_subs_len,
371                            p_block->i_pts / 1000, p_block->i_length / 1000 );
372     }
373     vlc_mutex_unlock( &p_sys->lock );
374
375     DecSysHold( p_sys ); /* Keep a reference for the returned subpicture */
376
377     block_Release( p_block );
378
379     return p_spu;
380 }
381
382 /****************************************************************************
383  *
384  ****************************************************************************/
385 static int SubpictureValidate( subpicture_t *p_subpic,
386                                bool b_fmt_src, const video_format_t *p_fmt_src,
387                                bool b_fmt_dst, const video_format_t *p_fmt_dst,
388                                mtime_t i_ts )
389 {
390     decoder_sys_t *p_sys = p_subpic->updater.p_sys->p_dec_sys;
391
392     vlc_mutex_lock( &p_sys->lock );
393
394     video_format_t fmt = *p_fmt_dst;
395     fmt.i_chroma         = VLC_CODEC_RGBA;
396     fmt.i_bits_per_pixel = 0;
397     fmt.i_x_offset       = 0;
398     fmt.i_y_offset       = 0;
399     if( b_fmt_src || b_fmt_dst )
400     {
401         ass_set_frame_size( p_sys->p_renderer, fmt.i_visible_width, fmt.i_visible_height );
402         const double src_ratio = (double)p_fmt_src->i_visible_width / p_fmt_src->i_visible_height;
403         const double dst_ratio = (double)p_fmt_dst->i_visible_width / p_fmt_dst->i_visible_height;
404         ass_set_aspect_ratio( p_sys->p_renderer, dst_ratio / src_ratio, 1 );
405         p_sys->fmt = fmt;
406     }
407
408     /* */
409     const mtime_t i_stream_date = p_subpic->updater.p_sys->i_pts + (i_ts - p_subpic->i_start);
410     int i_changed;
411     ASS_Image *p_img = ass_render_frame( p_sys->p_renderer, p_sys->p_track,
412                                          i_stream_date/1000, &i_changed );
413
414     if( !i_changed && !b_fmt_src && !b_fmt_dst &&
415         (p_img != NULL) == (p_subpic->p_region != NULL) )
416     {
417         vlc_mutex_unlock( &p_sys->lock );
418         return VLC_SUCCESS;
419     }
420     p_subpic->updater.p_sys->p_img = p_img;
421
422     /* The lock is released by SubpictureUpdate */
423     return VLC_EGENERIC;
424 }
425
426 static void SubpictureUpdate( subpicture_t *p_subpic,
427                               const video_format_t *p_fmt_src,
428                               const video_format_t *p_fmt_dst,
429                               mtime_t i_ts )
430 {
431     VLC_UNUSED( p_fmt_src ); VLC_UNUSED( p_fmt_dst ); VLC_UNUSED( i_ts );
432
433     decoder_sys_t *p_sys = p_subpic->updater.p_sys->p_dec_sys;
434
435     video_format_t fmt = p_sys->fmt;
436     ASS_Image *p_img = p_subpic->updater.p_sys->p_img;
437
438     /* */
439     p_subpic->i_original_picture_height = fmt.i_visible_height;
440     p_subpic->i_original_picture_width = fmt.i_visible_width;
441
442     /* XXX to improve efficiency we merge regions that are close minimizing
443      * the lost surface.
444      * libass tends to create a lot of small regions and thus spu engine
445      * reinstanciate a lot the scaler, and as we do not support subpel blending
446      * it looks ugly (text unaligned).
447      */
448     const int i_max_region = 4;
449     rectangle_t region[i_max_region];
450     const int i_region = BuildRegions( region, i_max_region, p_img, fmt.i_width, fmt.i_height );
451
452     if( i_region <= 0 )
453     {
454         vlc_mutex_unlock( &p_sys->lock );
455         return;
456     }
457
458     /* Allocate the regions and draw them */
459     subpicture_region_t **pp_region_last = &p_subpic->p_region;
460
461     for( int i = 0; i < i_region; i++ )
462     {
463         subpicture_region_t *r;
464         video_format_t fmt_region;
465
466         /* */
467         fmt_region = fmt;
468         fmt_region.i_width =
469         fmt_region.i_visible_width  = region[i].x1 - region[i].x0;
470         fmt_region.i_height =
471         fmt_region.i_visible_height = region[i].y1 - region[i].y0;
472
473         r = subpicture_region_New( &fmt_region );
474         if( !r )
475             break;
476         r->i_x = region[i].x0;
477         r->i_y = region[i].y0;
478         r->i_align = SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_LEFT;
479
480         /* */
481         RegionDraw( r, p_img );
482
483         /* */
484         *pp_region_last = r;
485         pp_region_last = &r->p_next;
486     }
487     vlc_mutex_unlock( &p_sys->lock );
488
489 }
490 static void SubpictureDestroy( subpicture_t *p_subpic )
491 {
492     subpicture_updater_sys_t *p_sys = p_subpic->updater.p_sys;
493
494     DecSysRelease( p_sys->p_dec_sys );
495     free( p_sys->p_subs_data );
496     free( p_sys );
497 }
498
499 static rectangle_t r_create( int x0, int y0, int x1, int y1 )
500 {
501     rectangle_t r = { x0, y0, x1, y1 };
502     return r;
503 }
504 static rectangle_t r_img( const ASS_Image *p_img )
505 {
506     return r_create( p_img->dst_x, p_img->dst_y, p_img->dst_x+p_img->w, p_img->dst_y+p_img->h );
507 }
508 static void r_add( rectangle_t *r, const rectangle_t *n )
509 {
510     r->x0 = __MIN( r->x0, n->x0 );
511     r->y0 = __MIN( r->y0, n->y0 );
512     r->x1 = __MAX( r->x1, n->x1 );
513     r->y1 = __MAX( r->y1, n->y1 );
514 }
515 static int r_surface( const rectangle_t *r )
516 {
517     return (r->x1-r->x0) * (r->y1-r->y0);
518 }
519 static bool r_overlap( const rectangle_t *a, const rectangle_t *b, int i_dx, int i_dy )
520 {
521     return  __MAX(a->x0-i_dx, b->x0) < __MIN( a->x1+i_dx, b->x1 ) &&
522             __MAX(a->y0-i_dy, b->y0) < __MIN( a->y1+i_dy, b->y1 );
523 }
524
525 static int BuildRegions( rectangle_t *p_region, int i_max_region, ASS_Image *p_img_list, int i_width, int i_height )
526 {
527     ASS_Image *p_tmp;
528     int i_count;
529
530 #ifdef DEBUG_REGION
531     int64_t i_ck_start = mdate();
532 #endif
533
534     for( p_tmp = p_img_list, i_count = 0; p_tmp != NULL; p_tmp = p_tmp->next )
535         if( p_tmp->w > 0 && p_tmp->h > 0 )
536             i_count++;
537     if( i_count <= 0 )
538         return 0;
539
540     ASS_Image **pp_img = calloc( i_count, sizeof(*pp_img) );
541     if( !pp_img )
542         return 0;
543
544     for( p_tmp = p_img_list, i_count = 0; p_tmp != NULL; p_tmp = p_tmp->next )
545         if( p_tmp->w > 0 && p_tmp->h > 0 )
546             pp_img[i_count++] = p_tmp;
547
548     /* */
549     const int i_w_inc = __MAX( ( i_width + 49 ) / 50, 32 );
550     const int i_h_inc = __MAX( ( i_height + 99 ) / 100, 32 );
551     int i_maxh = i_w_inc;
552     int i_maxw = i_h_inc;
553     int i_region;
554     rectangle_t region[i_max_region+1];
555
556     i_region = 0;
557     for( int i_used = 0; i_used < i_count; )
558     {
559         int n;
560         for( n = 0; n < i_count; n++ )
561         {
562             if( pp_img[n] )
563                 break;
564         }
565         assert( i_region < i_max_region + 1 );
566         region[i_region++] = r_img( pp_img[n] );
567         pp_img[n] = NULL; i_used++;
568
569         bool b_ok;
570         do {
571             b_ok = false;
572             for( n = 0; n < i_count; n++ )
573             {
574                 ASS_Image *p_img = pp_img[n];
575                 if( !p_img )
576                     continue;
577                 rectangle_t r = r_img( p_img );
578
579                 int k;
580                 int i_best = -1;
581                 int i_best_s = INT_MAX;
582                 for( k = 0; k < i_region; k++ )
583                 {
584                     if( !r_overlap( &region[k], &r, i_maxw, i_maxh ) )
585                         continue;
586                     int s = r_surface( &r );
587                     if( s < i_best_s )
588                     {
589                         i_best_s = s;
590                         i_best = k;
591                     }
592                 }
593                 if( i_best >= 0 )
594                 {
595                     r_add( &region[i_best], &r );
596                     pp_img[n] = NULL; i_used++;
597                     b_ok = true;
598                 }
599             }
600         } while( b_ok );
601
602         if( i_region > i_max_region )
603         {
604             int i_best_i = -1;
605             int i_best_j = -1;
606             int i_best_ds = INT_MAX;
607
608             /* merge best */
609             for( int i = 0; i < i_region; i++ )
610             {
611                 for( int j = i+1; j < i_region; j++ )
612                 {
613                     rectangle_t n = region[i];
614                     r_add( &n, &region[j] );
615                     int ds = r_surface( &n ) - r_surface( &region[i] ) - r_surface( &region[j] );
616
617                     if( ds < i_best_ds )
618                     {
619                         i_best_i = i;
620                         i_best_j = j;
621                         i_best_ds = ds;
622                     }
623                 }
624             }
625 #ifdef DEBUG_REGION
626             msg_Err( p_spu, "Merging %d and %d", i_best_i, i_best_j );
627 #endif
628             if( i_best_j >= 0 && i_best_i >= 0 )
629             {
630                 r_add( &region[i_best_i], &region[i_best_j] );
631
632                 if( i_best_j+1 < i_region )
633                     memmove( &region[i_best_j], &region[i_best_j+1], sizeof(*region) * ( i_region - (i_best_j+1)  ) );
634                 i_region--;
635             }
636         }
637     }
638
639     /* */
640     for( int n = 0; n < i_region; n++ )
641         p_region[n] = region[n];
642
643 #ifdef DEBUG_REGION
644     int64_t i_ck_time = mdate() - i_ck_start;
645     msg_Err( p_spu, "ASS: %d objects merged into %d region in %d micros", i_count, i_region, (int)(i_ck_time) );
646 #endif
647
648     free( pp_img );
649
650     return i_region;
651 }
652
653 static void RegionDraw( subpicture_region_t *p_region, ASS_Image *p_img )
654 {
655     const plane_t *p = &p_region->p_picture->p[0];
656     const int i_x = p_region->i_x;
657     const int i_y = p_region->i_y;
658     const int i_width  = p_region->fmt.i_width;
659     const int i_height = p_region->fmt.i_height;
660
661     memset( p->p_pixels, 0x00, p->i_pitch * p->i_lines );
662     for( ; p_img != NULL; p_img = p_img->next )
663     {
664         if( p_img->dst_x < i_x || p_img->dst_x + p_img->w > i_x + i_width ||
665             p_img->dst_y < i_y || p_img->dst_y + p_img->h > i_y + i_height )
666             continue;
667
668         const unsigned r = (p_img->color >> 24)&0xff;
669         const unsigned g = (p_img->color >> 16)&0xff;
670         const unsigned b = (p_img->color >>  8)&0xff;
671         const unsigned a = (p_img->color      )&0xff;
672         int x, y;
673
674         for( y = 0; y < p_img->h; y++ )
675         {
676             for( x = 0; x < p_img->w; x++ )
677             {
678                 const unsigned alpha = p_img->bitmap[y*p_img->stride+x];
679                 const unsigned an = (255 - a) * alpha / 255;
680
681                 uint8_t *p_rgba = &p->p_pixels[(y+p_img->dst_y-i_y) * p->i_pitch + 4 * (x+p_img->dst_x-i_x)];
682                 const unsigned ao = p_rgba[3];
683
684                 /* Native endianness, but RGBA ordering */
685                 if( ao == 0 )
686                 {
687                     /* Optimized but the else{} will produce the same result */
688                     p_rgba[0] = r;
689                     p_rgba[1] = g;
690                     p_rgba[2] = b;
691                     p_rgba[3] = an;
692                 }
693                 else
694                 {
695                     p_rgba[3] = 255 - ( 255 - p_rgba[3] ) * ( 255 - an ) / 255;
696                     if( p_rgba[3] != 0 )
697                     {
698                         p_rgba[0] = ( p_rgba[0] * ao * (255-an) / 255 + r * an ) / p_rgba[3];
699                         p_rgba[1] = ( p_rgba[1] * ao * (255-an) / 255 + g * an ) / p_rgba[3];
700                         p_rgba[2] = ( p_rgba[2] * ao * (255-an) / 255 + b * an ) / p_rgba[3];
701                     }
702                 }
703             }
704         }
705     }
706
707 #ifdef DEBUG_REGION
708     /* XXX Draw a box for debug */
709 #define P(x,y) ((uint32_t*)&p->p_pixels[(y)*p->i_pitch + 4*(x)])
710     for( int y = 0; y < p->i_lines; y++ )
711         *P(0,y) = *P(p->i_visible_pitch/4-1,y) = 0xff000000;
712     for( int x = 0; x < p->i_visible_pitch; x++ )
713         *P(x/4,0) = *P(x/4,p->i_visible_lines-1) = 0xff000000;
714 #undef P
715 #endif
716 }
717