2 Skeleton of function spudec_process_controll() is from xine sources.
4 LGB,... (yeah, try to improve it and insert your name here! ;-)
7 implement fragments reassembly, RLE decoding.
8 read brightness from the IFO.
10 For information on SPU format see <URL:http://sam.zoy.org/doc/dvd/subtitles/>
11 and <URL:http://members.aol.com/mpucoder/DVD/spu.html>
24 #include "libvo/video_out.h"
26 #ifdef USE_LIBAVUTIL_SO
27 #include <ffmpeg/avutil.h>
31 #include "libswscale/swscale.h"
33 /* Valid values for spu_aamode:
34 0: none (fastest, most ugly)
37 3: bilinear (similiar to vobsub, fast and not too bad)
38 4: uses swscaler gaussian (this is the only one that looks good)
42 int spu_alignment
= -1;
43 float spu_gaussvar
= 1.0;
46 typedef struct packet_t packet_t
;
48 unsigned char *packet
;
49 unsigned int palette
[4];
50 unsigned int alpha
[4];
51 unsigned int control_start
; /* index of start of control data */
52 unsigned int current_nibble
[2]; /* next data nibble (4 bits) to be
53 processed (for RLE decoding) for
55 int deinterlace_oddness
; /* 0 or 1, index into current_nibble */
56 unsigned int start_col
, end_col
;
57 unsigned int start_row
, end_row
;
58 unsigned int width
, height
, stride
;
59 unsigned int start_pts
, end_pts
;
66 unsigned int global_palette
[16];
67 unsigned int orig_frame_width
, orig_frame_height
;
68 unsigned char* packet
;
69 size_t packet_reserve
; /* size of the memory pointed to by packet */
70 unsigned int packet_offset
; /* end of the currently assembled fragment */
71 unsigned int packet_size
; /* size of the packet once all fragments are assembled */
72 int packet_pts
; /* PTS for this packet */
73 unsigned int palette
[4];
74 unsigned int alpha
[4];
75 unsigned int cuspal
[4];
78 unsigned int start_pts
, end_pts
;
79 unsigned int start_col
, end_col
;
80 unsigned int start_row
, end_row
;
81 unsigned int width
, height
, stride
;
82 size_t image_size
; /* Size of the image buffer */
83 unsigned char *image
; /* Grayscale value */
84 unsigned char *aimage
; /* Alpha value */
85 unsigned int scaled_frame_width
, scaled_frame_height
;
86 unsigned int scaled_start_col
, scaled_start_row
;
87 unsigned int scaled_width
, scaled_height
, scaled_stride
;
88 size_t scaled_image_size
;
89 unsigned char *scaled_image
;
90 unsigned char *scaled_aimage
;
91 int auto_palette
; /* 1 if we lack a palette and must use an heuristic. */
92 int font_start_level
; /* Darkest value used for the computed font */
93 const vo_functions_t
*hw_spu
;
95 unsigned int forced_subs_only
; /* flag: 0=display all subtitle, !0 display only forced subtitles */
96 unsigned int is_forced_sub
; /* true if current subtitle is a forced subtitle */
99 static void spudec_queue_packet(spudec_handle_t
*this, packet_t
*packet
)
101 if (this->queue_head
== NULL
)
102 this->queue_head
= packet
;
104 this->queue_tail
->next
= packet
;
105 this->queue_tail
= packet
;
108 static packet_t
*spudec_dequeue_packet(spudec_handle_t
*this)
110 packet_t
*retval
= this->queue_head
;
112 this->queue_head
= retval
->next
;
113 if (this->queue_head
== NULL
)
114 this->queue_tail
= NULL
;
119 static void spudec_free_packet(packet_t
*packet
)
121 if (packet
->packet
!= NULL
)
122 free(packet
->packet
);
126 static inline unsigned int get_be16(const unsigned char *p
)
128 return (p
[0] << 8) + p
[1];
131 static inline unsigned int get_be24(const unsigned char *p
)
133 return (get_be16(p
) << 8) + p
[2];
136 static void next_line(packet_t
*packet
)
138 if (packet
->current_nibble
[packet
->deinterlace_oddness
] % 2)
139 packet
->current_nibble
[packet
->deinterlace_oddness
]++;
140 packet
->deinterlace_oddness
= (packet
->deinterlace_oddness
+ 1) % 2;
143 static inline unsigned char get_nibble(packet_t
*packet
)
146 unsigned int *nibblep
= packet
->current_nibble
+ packet
->deinterlace_oddness
;
147 if (*nibblep
/ 2 >= packet
->control_start
) {
148 mp_msg(MSGT_SPUDEC
,MSGL_WARN
, "SPUdec: ERROR: get_nibble past end of packet\n");
151 nib
= packet
->packet
[*nibblep
/ 2];
160 static inline int mkalpha(int i
)
162 /* In mplayer's alpha planes, 0 is transparent, then 1 is nearly
163 opaque upto 255 which is transparent */
170 return (0xf - i
) << 4;
174 /* Cut the sub to visible part */
175 static inline void spudec_cut_image(spudec_handle_t
*this)
178 unsigned int first_y
, last_y
;
179 unsigned char *image
;
180 unsigned char *aimage
;
182 if (this->stride
== 0 || this->height
== 0) {
186 for (fy
= 0; fy
< this->image_size
&& !this->aimage
[fy
]; fy
++);
187 for (ly
= this->stride
* this->height
-1; ly
&& !this->aimage
[ly
]; ly
--);
188 first_y
= fy
/ this->stride
;
189 last_y
= ly
/ this->stride
;
190 //printf("first_y: %d, last_y: %d\n", first_y, last_y);
191 this->start_row
+= first_y
;
193 // Some subtitles trigger this condition
194 if (last_y
+ 1 > first_y
) {
195 this->height
= last_y
- first_y
+1;
198 this->image_size
= 0;
202 // printf("new h %d new start %d (sz %d st %d)---\n\n", this->height, this->start_row, this->image_size, this->stride);
204 image
= malloc(2 * this->stride
* this->height
);
206 this->image_size
= this->stride
* this->height
;
207 aimage
= image
+ this->image_size
;
208 memcpy(image
, this->image
+ this->stride
* first_y
, this->image_size
);
209 memcpy(aimage
, this->aimage
+ this->stride
* first_y
, this->image_size
);
212 this->aimage
= aimage
;
214 mp_msg(MSGT_SPUDEC
, MSGL_FATAL
, "Fatal: update_spu: malloc requested %d bytes\n", 2 * this->stride
* this->height
);
218 static void spudec_process_data(spudec_handle_t
*this, packet_t
*packet
)
220 unsigned int cmap
[4], alpha
[4];
221 unsigned int i
, x
, y
;
223 this->scaled_frame_width
= 0;
224 this->scaled_frame_height
= 0;
225 this->start_col
= packet
->start_col
;
226 this->end_col
= packet
->end_col
;
227 this->start_row
= packet
->start_row
;
228 this->end_row
= packet
->end_row
;
229 this->height
= packet
->height
;
230 this->width
= packet
->width
;
231 this->stride
= packet
->stride
;
232 for (i
= 0; i
< 4; ++i
) {
233 alpha
[i
] = mkalpha(packet
->alpha
[i
]);
234 if (this->custom
&& (this->cuspal
[i
] >> 31) != 0)
238 else if (this->custom
){
239 cmap
[i
] = ((this->cuspal
[i
] >> 16) & 0xff);
240 if (cmap
[i
] + alpha
[i
] > 255)
241 cmap
[i
] = 256 - alpha
[i
];
244 cmap
[i
] = ((this->global_palette
[packet
->palette
[i
]] >> 16) & 0xff);
245 if (cmap
[i
] + alpha
[i
] > 255)
246 cmap
[i
] = 256 - alpha
[i
];
250 if (this->image_size
< this->stride
* this->height
) {
251 if (this->image
!= NULL
) {
253 this->image_size
= 0;
255 this->image
= malloc(2 * this->stride
* this->height
);
257 this->image_size
= this->stride
* this->height
;
258 this->aimage
= this->image
+ this->image_size
;
261 if (this->image
== NULL
)
264 /* Kludge: draw_alpha needs width multiple of 8. */
265 if (this->width
< this->stride
)
266 for (y
= 0; y
< this->height
; ++y
) {
267 memset(this->aimage
+ y
* this->stride
+ this->width
, 0, this->stride
- this->width
);
268 /* FIXME: Why is this one needed? */
269 memset(this->image
+ y
* this->stride
+ this->width
, 0, this->stride
- this->width
);
272 i
= packet
->current_nibble
[1];
275 while (packet
->current_nibble
[0] < i
276 && packet
->current_nibble
[1] / 2 < packet
->control_start
277 && y
< this->height
) {
278 unsigned int len
, color
;
279 unsigned int rle
= 0;
280 rle
= get_nibble(packet
);
282 rle
= (rle
<< 4) | get_nibble(packet
);
284 rle
= (rle
<< 4) | get_nibble(packet
);
286 rle
= (rle
<< 4) | get_nibble(packet
);
288 rle
|= ((this->width
- x
) << 2);
292 color
= 3 - (rle
& 0x3);
294 if (len
> this->width
- x
|| len
== 0)
295 len
= this->width
- x
;
296 /* FIXME have to use palette and alpha map*/
297 memset(this->image
+ y
* this->stride
+ x
, cmap
[color
], len
);
298 memset(this->aimage
+ y
* this->stride
+ x
, alpha
[color
], len
);
300 if (x
>= this->width
) {
306 spudec_cut_image(this);
311 This function tries to create a usable palette.
312 It determines how many non-transparent colors are used, and assigns different
313 gray scale values to each color.
314 I tested it with four streams and even got something readable. Half of the
315 times I got black characters with white around and half the reverse.
317 static void compute_palette(spudec_handle_t
*this, packet_t
*packet
)
319 int used
[16],i
,cused
,start
,step
,color
;
321 memset(used
, 0, sizeof(used
));
323 if (packet
->alpha
[i
]) /* !Transparent? */
324 used
[packet
->palette
[i
]] = 1;
325 for (cused
=0, i
=0; i
<16; i
++)
326 if (used
[i
]) cused
++;
332 start
= this->font_start_level
;
333 step
= (0xF0-this->font_start_level
)/(cused
-1);
335 memset(used
, 0, sizeof(used
));
336 for (i
=0; i
<4; i
++) {
337 color
= packet
->palette
[i
];
338 if (packet
->alpha
[i
] && !used
[color
]) { /* not assigned? */
340 this->global_palette
[color
] = start
<<16;
346 static void spudec_process_control(spudec_handle_t
*this, int pts100
)
348 int a
,b
; /* Temporary vars */
349 unsigned int date
, type
;
351 unsigned int start_off
= 0;
352 unsigned int next_off
;
353 unsigned int start_pts
= 0;
354 unsigned int end_pts
= 0;
355 unsigned int current_nibble
[2] = {0, 0};
356 unsigned int control_start
;
357 unsigned int display
= 0;
358 unsigned int start_col
= 0;
359 unsigned int end_col
= 0;
360 unsigned int start_row
= 0;
361 unsigned int end_row
= 0;
362 unsigned int width
= 0;
363 unsigned int height
= 0;
364 unsigned int stride
= 0;
366 control_start
= get_be16(this->packet
+ 2);
367 next_off
= control_start
;
368 while (start_off
!= next_off
) {
369 start_off
= next_off
;
370 date
= get_be16(this->packet
+ start_off
) * 1024;
371 next_off
= get_be16(this->packet
+ start_off
+ 2);
372 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
, "date=%d\n", date
);
374 for (type
= this->packet
[off
++]; type
!= 0xff; type
= this->packet
[off
++]) {
375 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
, "cmd=%d ",type
);
378 /* Menu ID, 1 byte */
379 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"Menu ID\n");
380 /* shouldn't a Menu ID type force display start? */
381 start_pts
= pts100
< 0 && -pts100
>= date
? 0 : pts100
+ date
;
384 this->is_forced_sub
=~0; // current subtitle is forced
388 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"Start display!\n");
389 start_pts
= pts100
< 0 && -pts100
>= date
? 0 : pts100
+ date
;
392 this->is_forced_sub
=0;
396 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"Stop display!\n");
397 end_pts
= pts100
< 0 && -pts100
>= date
? 0 : pts100
+ date
;
401 this->palette
[0] = this->packet
[off
] >> 4;
402 this->palette
[1] = this->packet
[off
] & 0xf;
403 this->palette
[2] = this->packet
[off
+ 1] >> 4;
404 this->palette
[3] = this->packet
[off
+ 1] & 0xf;
405 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"Palette %d, %d, %d, %d\n",
406 this->palette
[0], this->palette
[1], this->palette
[2], this->palette
[3]);
411 this->alpha
[0] = this->packet
[off
] >> 4;
412 this->alpha
[1] = this->packet
[off
] & 0xf;
413 this->alpha
[2] = this->packet
[off
+ 1] >> 4;
414 this->alpha
[3] = this->packet
[off
+ 1] & 0xf;
415 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"Alpha %d, %d, %d, %d\n",
416 this->alpha
[0], this->alpha
[1], this->alpha
[2], this->alpha
[3]);
421 a
= get_be24(this->packet
+ off
);
422 b
= get_be24(this->packet
+ off
+ 3);
425 width
= (end_col
< start_col
) ? 0 : end_col
- start_col
+ 1;
426 stride
= (width
+ 7) & ~7; /* Kludge: draw_alpha needs width multiple of 8 */
429 height
= (end_row
< start_row
) ? 0 : end_row
- start_row
/* + 1 */;
430 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"Coords col: %d - %d row: %d - %d (%dx%d)\n",
431 start_col
, end_col
, start_row
, end_row
,
437 current_nibble
[0] = 2 * get_be16(this->packet
+ off
);
438 current_nibble
[1] = 2 * get_be16(this->packet
+ off
+ 2);
439 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"Graphic offset 1: %d offset 2: %d\n",
440 current_nibble
[0] / 2, current_nibble
[1] / 2);
444 /* All done, bye-bye */
445 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"Done!\n");
449 mp_msg(MSGT_SPUDEC
,MSGL_WARN
,"spudec: Error determining control type 0x%02x. Skipping %d bytes.\n",
450 type
, next_off
- off
);
457 if (end_pts
== UINT_MAX
&& start_off
!= next_off
) {
458 end_pts
= get_be16(this->packet
+ next_off
) * 1024;
459 end_pts
= 1 - pts100
>= end_pts
? 0 : pts100
+ end_pts
- 1;
462 packet_t
*packet
= calloc(1, sizeof(packet_t
));
464 packet
->start_pts
= start_pts
;
465 packet
->end_pts
= end_pts
;
466 packet
->current_nibble
[0] = current_nibble
[0];
467 packet
->current_nibble
[1] = current_nibble
[1];
468 packet
->start_row
= start_row
;
469 packet
->end_row
= end_row
;
470 packet
->start_col
= start_col
;
471 packet
->end_col
= end_col
;
472 packet
->width
= width
;
473 packet
->height
= height
;
474 packet
->stride
= stride
;
475 packet
->control_start
= control_start
;
476 for (i
=0; i
<4; i
++) {
477 packet
->alpha
[i
] = this->alpha
[i
];
478 packet
->palette
[i
] = this->palette
[i
];
480 packet
->packet
= malloc(this->packet_size
);
481 memcpy(packet
->packet
, this->packet
, this->packet_size
);
482 spudec_queue_packet(this, packet
);
487 static void spudec_decode(spudec_handle_t
*this, int pts100
)
490 spudec_process_control(this, pts100
);
491 else if (pts100
>= 0) {
492 static vo_mpegpes_t packet
= { NULL
, 0, 0x20, 0 };
493 static vo_mpegpes_t
*pkg
=&packet
;
494 packet
.data
= this->packet
;
495 packet
.size
= this->packet_size
;
496 packet
.timestamp
= pts100
;
497 this->hw_spu
->draw_frame((uint8_t**)&pkg
);
501 int spudec_changed(void * this)
503 spudec_handle_t
* spu
= (spudec_handle_t
*)this;
504 return (spu
->spu_changed
|| spu
->now_pts
> spu
->end_pts
);
507 void spudec_assemble(void *this, unsigned char *packet
, unsigned int len
, int pts100
)
509 spudec_handle_t
*spu
= (spudec_handle_t
*)this;
510 // spudec_heartbeat(this, pts100);
512 mp_msg(MSGT_SPUDEC
,MSGL_WARN
,"SPUasm: packet too short\n");
516 if ((spu
->packet_pts
+ 10000) < pts100
) {
517 // [cb] too long since last fragment: force new packet
518 spu
->packet_offset
= 0;
521 spu
->packet_pts
= pts100
;
522 if (spu
->packet_offset
== 0) {
523 unsigned int len2
= get_be16(packet
);
524 // Start new fragment
525 if (spu
->packet_reserve
< len2
) {
526 if (spu
->packet
!= NULL
)
528 spu
->packet
= malloc(len2
);
529 spu
->packet_reserve
= spu
->packet
!= NULL
? len2
: 0;
531 if (spu
->packet
!= NULL
) {
532 spu
->packet_size
= len2
;
534 mp_msg(MSGT_SPUDEC
,MSGL_WARN
,"SPUasm: invalid frag len / len2: %d / %d \n", len
, len2
);
537 memcpy(spu
->packet
, packet
, len
);
538 spu
->packet_offset
= len
;
539 spu
->packet_pts
= pts100
;
542 // Continue current fragment
543 if (spu
->packet_size
< spu
->packet_offset
+ len
){
544 mp_msg(MSGT_SPUDEC
,MSGL_WARN
,"SPUasm: invalid fragment\n");
545 spu
->packet_size
= spu
->packet_offset
= 0;
548 memcpy(spu
->packet
+ spu
->packet_offset
, packet
, len
);
549 spu
->packet_offset
+= len
;
553 // check if we have a complete packet (unfortunatelly packet_size is bad
555 // [cb] packet_size is padded to be even -> may be one byte too long
556 if ((spu
->packet_offset
== spu
->packet_size
) ||
557 ((spu
->packet_offset
+ 1) == spu
->packet_size
)){
559 while(x
+4<=spu
->packet_offset
){
560 y
=get_be16(spu
->packet
+x
+2); // next control pointer
561 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"SPUtest: x=%d y=%d off=%d size=%d\n",x
,y
,spu
->packet_offset
,spu
->packet_size
);
562 if(x
>=4 && x
==y
){ // if it points to self - we're done!
564 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"SPUgot: off=%d size=%d \n",spu
->packet_offset
,spu
->packet_size
);
565 spudec_decode(spu
, pts100
);
566 spu
->packet_offset
= 0;
569 if(y
<=x
|| y
>=spu
->packet_size
){ // invalid?
570 mp_msg(MSGT_SPUDEC
,MSGL_WARN
,"SPUtest: broken packet!!!!! y=%d < x=%d\n",y
,x
);
571 spu
->packet_size
= spu
->packet_offset
= 0;
576 // [cb] packet is done; start new packet
577 spu
->packet_offset
= 0;
580 if (spu
->packet_offset
== spu
->packet_size
) {
581 spudec_decode(spu
, pts100
);
582 spu
->packet_offset
= 0;
587 void spudec_reset(void *this) // called after seek
589 spudec_handle_t
*spu
= (spudec_handle_t
*)this;
590 while (spu
->queue_head
)
591 spudec_free_packet(spudec_dequeue_packet(spu
));
594 spu
->packet_size
= spu
->packet_offset
= 0;
597 void spudec_heartbeat(void *this, unsigned int pts100
)
599 spudec_handle_t
*spu
= (spudec_handle_t
*) this;
600 spu
->now_pts
= pts100
;
602 while (spu
->queue_head
!= NULL
&& pts100
>= spu
->queue_head
->start_pts
) {
603 packet_t
*packet
= spudec_dequeue_packet(spu
);
604 spu
->start_pts
= packet
->start_pts
;
605 spu
->end_pts
= packet
->end_pts
;
606 if (spu
->auto_palette
)
607 compute_palette(spu
, packet
);
608 spudec_process_data(spu
, packet
);
609 spudec_free_packet(packet
);
610 spu
->spu_changed
= 1;
614 int spudec_visible(void *this){
615 spudec_handle_t
*spu
= (spudec_handle_t
*)this;
616 int ret
=(spu
->start_pts
<= spu
->now_pts
&&
617 spu
->now_pts
< spu
->end_pts
&&
619 // printf("spu visible: %d \n",ret);
623 void spudec_set_forced_subs_only(void * const this, const unsigned int flag
)
626 ((spudec_handle_t
*)this)->forced_subs_only
=flag
;
627 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"SPU: Display only forced subs now %s\n", flag
? "enabled": "disabled");
631 void spudec_draw(void *this, void (*draw_alpha
)(int x0
,int y0
, int w
,int h
, unsigned char* src
, unsigned char *srca
, int stride
))
633 spudec_handle_t
*spu
= (spudec_handle_t
*)this;
634 if (spu
->start_pts
<= spu
->now_pts
&& spu
->now_pts
< spu
->end_pts
&& spu
->image
)
636 draw_alpha(spu
->start_col
, spu
->start_row
, spu
->width
, spu
->height
,
637 spu
->image
, spu
->aimage
, spu
->stride
);
638 spu
->spu_changed
= 0;
642 /* calc the bbox for spudec subs */
643 void spudec_calc_bbox(void *me
, unsigned int dxs
, unsigned int dys
, unsigned int* bbox
)
645 spudec_handle_t
*spu
;
646 spu
= (spudec_handle_t
*)me
;
647 if (spu
->orig_frame_width
== 0 || spu
->orig_frame_height
== 0
648 || (spu
->orig_frame_width
== dxs
&& spu
->orig_frame_height
== dys
)) {
649 bbox
[0] = spu
->start_col
;
650 bbox
[1] = spu
->start_col
+ spu
->width
;
651 bbox
[2] = spu
->start_row
;
652 bbox
[3] = spu
->start_row
+ spu
->height
;
654 else if (spu
->scaled_frame_width
!= dxs
|| spu
->scaled_frame_height
!= dys
) {
655 unsigned int scalex
= 0x100 * dxs
/ spu
->orig_frame_width
;
656 unsigned int scaley
= 0x100 * dys
/ spu
->orig_frame_height
;
657 bbox
[0] = spu
->start_col
* scalex
/ 0x100;
658 bbox
[1] = spu
->start_col
* scalex
/ 0x100 + spu
->width
* scalex
/ 0x100;
659 switch (spu_alignment
) {
661 bbox
[3] = dys
*sub_pos
/100 + spu
->height
* scaley
/ 0x100;
662 if (bbox
[3] > dys
) bbox
[3] = dys
;
663 bbox
[2] = bbox
[3] - spu
->height
* scaley
/ 0x100;
667 bbox
[2] = dys
*sub_pos
/100 - spu
->height
* scaley
/ 0x200;
668 bbox
[3] = bbox
[2] + spu
->height
;
670 bbox
[3] = dys
*sub_pos
/100 + spu
->height
* scaley
/ 0x200;
671 if (bbox
[3] > dys
) bbox
[3] = dys
;
672 bbox
[2] = bbox
[3] - spu
->height
* scaley
/ 0x100;
676 bbox
[2] = dys
*sub_pos
/100 - spu
->height
* scaley
/ 0x100;
677 bbox
[3] = bbox
[2] + spu
->height
;
680 bbox
[2] = spu
->start_row
* scaley
/ 0x100;
681 bbox
[3] = spu
->start_row
* scaley
/ 0x100 + spu
->height
* scaley
/ 0x100;
686 /* transform mplayer's alpha value into an opacity value that is linear */
687 static inline int canon_alpha(int alpha
)
689 return alpha
? 256 - alpha
: 0;
699 static void scale_table(unsigned int start_src
, unsigned int start_tar
, unsigned int end_src
, unsigned int end_tar
, scale_pixel
* table
)
702 unsigned int delta_src
= end_src
- start_src
;
703 unsigned int delta_tar
= end_tar
- start_tar
;
706 if (delta_src
== 0 || delta_tar
== 0) {
709 src_step
= (delta_src
<< 16) / delta_tar
>>1;
710 for (t
= 0; t
<=delta_tar
; src
+= (src_step
<< 1), t
++){
711 table
[t
].position
= FFMIN(src
>> 16, end_src
- 1);
712 table
[t
].right_down
= src
& 0xffff;
713 table
[t
].left_up
= 0x10000 - table
[t
].right_down
;
717 /* bilinear scale, similar to vobsub's code */
718 static void scale_image(int x
, int y
, scale_pixel
* table_x
, scale_pixel
* table_y
, spudec_handle_t
* spu
)
722 unsigned int scale
[4];
723 int base
= table_y
[y
].position
* spu
->stride
+ table_x
[x
].position
;
724 int scaled
= y
* spu
->scaled_stride
+ x
;
725 alpha
[0] = canon_alpha(spu
->aimage
[base
]);
726 alpha
[1] = canon_alpha(spu
->aimage
[base
+ 1]);
727 alpha
[2] = canon_alpha(spu
->aimage
[base
+ spu
->stride
]);
728 alpha
[3] = canon_alpha(spu
->aimage
[base
+ spu
->stride
+ 1]);
729 color
[0] = spu
->image
[base
];
730 color
[1] = spu
->image
[base
+ 1];
731 color
[2] = spu
->image
[base
+ spu
->stride
];
732 color
[3] = spu
->image
[base
+ spu
->stride
+ 1];
733 scale
[0] = (table_x
[x
].left_up
* table_y
[y
].left_up
>> 16) * alpha
[0];
734 scale
[1] = (table_x
[x
].right_down
* table_y
[y
].left_up
>>16) * alpha
[1];
735 scale
[2] = (table_x
[x
].left_up
* table_y
[y
].right_down
>> 16) * alpha
[2];
736 scale
[3] = (table_x
[x
].right_down
* table_y
[y
].right_down
>> 16) * alpha
[3];
737 spu
->scaled_image
[scaled
] = (color
[0] * scale
[0] + color
[1] * scale
[1] + color
[2] * scale
[2] + color
[3] * scale
[3])>>24;
738 spu
->scaled_aimage
[scaled
] = (scale
[0] + scale
[1] + scale
[2] + scale
[3]) >> 16;
739 if (spu
->scaled_aimage
[scaled
]){
740 spu
->scaled_aimage
[scaled
] = 256 - spu
->scaled_aimage
[scaled
];
741 if(spu
->scaled_aimage
[scaled
] + spu
->scaled_image
[scaled
] > 255)
742 spu
->scaled_image
[scaled
] = 256 - spu
->scaled_aimage
[scaled
];
746 void sws_spu_image(unsigned char *d1
, unsigned char *d2
, int dw
, int dh
, int ds
,
747 unsigned char *s1
, unsigned char *s2
, int sw
, int sh
, int ss
)
749 struct SwsContext
*ctx
;
750 static SwsFilter filter
;
751 static int firsttime
= 1;
755 if (!firsttime
&& oldvar
!= spu_gaussvar
) sws_freeVec(filter
.lumH
);
757 filter
.lumH
= filter
.lumV
=
758 filter
.chrH
= filter
.chrV
= sws_getGaussianVec(spu_gaussvar
, 3.0);
759 sws_normalizeVec(filter
.lumH
, 1.0);
761 oldvar
= spu_gaussvar
;
764 ctx
=sws_getContext(sw
, sh
, PIX_FMT_GRAY8
, dw
, dh
, PIX_FMT_GRAY8
, SWS_GAUSS
, &filter
, NULL
, NULL
);
765 sws_scale(ctx
,&s1
,&ss
,0,sh
,&d1
,&ds
);
766 for (i
=ss
*sh
-1; i
>=0; i
--) if (!s2
[i
]) s2
[i
] = 255; //else s2[i] = 1;
767 sws_scale(ctx
,&s2
,&ss
,0,sh
,&d2
,&ds
);
768 for (i
=ds
*dh
-1; i
>=0; i
--) if (d2
[i
]==0) d2
[i
] = 1; else if (d2
[i
]==255) d2
[i
] = 0;
769 sws_freeContext(ctx
);
772 void spudec_draw_scaled(void *me
, unsigned int dxs
, unsigned int dys
, void (*draw_alpha
)(int x0
,int y0
, int w
,int h
, unsigned char* src
, unsigned char *srca
, int stride
))
774 spudec_handle_t
*spu
= (spudec_handle_t
*)me
;
775 scale_pixel
*table_x
;
776 scale_pixel
*table_y
;
778 if (spu
->start_pts
<= spu
->now_pts
&& spu
->now_pts
< spu
->end_pts
) {
780 // check if only forced subtitles are requested
781 if( (spu
->forced_subs_only
) && !(spu
->is_forced_sub
) ){
785 if (!(spu_aamode
&16) && (spu
->orig_frame_width
== 0 || spu
->orig_frame_height
== 0
786 || (spu
->orig_frame_width
== dxs
&& spu
->orig_frame_height
== dys
))) {
789 draw_alpha(spu
->start_col
, spu
->start_row
, spu
->width
, spu
->height
,
790 spu
->image
, spu
->aimage
, spu
->stride
);
791 spu
->spu_changed
= 0;
795 if (spu
->scaled_frame_width
!= dxs
|| spu
->scaled_frame_height
!= dys
) { /* Resizing is needed */
796 /* scaled_x = scalex * x / 0x100
797 scaled_y = scaley * y / 0x100
798 order of operations is important because of rounding. */
799 unsigned int scalex
= 0x100 * dxs
/ spu
->orig_frame_width
;
800 unsigned int scaley
= 0x100 * dys
/ spu
->orig_frame_height
;
801 spu
->scaled_start_col
= spu
->start_col
* scalex
/ 0x100;
802 spu
->scaled_start_row
= spu
->start_row
* scaley
/ 0x100;
803 spu
->scaled_width
= spu
->width
* scalex
/ 0x100;
804 spu
->scaled_height
= spu
->height
* scaley
/ 0x100;
805 /* Kludge: draw_alpha needs width multiple of 8 */
806 spu
->scaled_stride
= (spu
->scaled_width
+ 7) & ~7;
807 if (spu
->scaled_image_size
< spu
->scaled_stride
* spu
->scaled_height
) {
808 if (spu
->scaled_image
) {
809 free(spu
->scaled_image
);
810 spu
->scaled_image_size
= 0;
812 spu
->scaled_image
= malloc(2 * spu
->scaled_stride
* spu
->scaled_height
);
813 if (spu
->scaled_image
) {
814 spu
->scaled_image_size
= spu
->scaled_stride
* spu
->scaled_height
;
815 spu
->scaled_aimage
= spu
->scaled_image
+ spu
->scaled_image_size
;
818 if (spu
->scaled_image
) {
820 if (spu
->scaled_width
<= 1 || spu
->scaled_height
<= 1) {
823 switch(spu_aamode
&15) {
825 sws_spu_image(spu
->scaled_image
, spu
->scaled_aimage
,
826 spu
->scaled_width
, spu
->scaled_height
, spu
->scaled_stride
,
827 spu
->image
, spu
->aimage
, spu
->width
, spu
->height
, spu
->stride
);
830 table_x
= calloc(spu
->scaled_width
, sizeof(scale_pixel
));
831 table_y
= calloc(spu
->scaled_height
, sizeof(scale_pixel
));
832 if (!table_x
|| !table_y
) {
833 mp_msg(MSGT_SPUDEC
, MSGL_FATAL
, "Fatal: spudec_draw_scaled: calloc failed\n");
835 scale_table(0, 0, spu
->width
- 1, spu
->scaled_width
- 1, table_x
);
836 scale_table(0, 0, spu
->height
- 1, spu
->scaled_height
- 1, table_y
);
837 for (y
= 0; y
< spu
->scaled_height
; y
++)
838 for (x
= 0; x
< spu
->scaled_width
; x
++)
839 scale_image(x
, y
, table_x
, table_y
, spu
);
844 /* no antialiasing */
845 for (y
= 0; y
< spu
->scaled_height
; ++y
) {
846 int unscaled_y
= y
* 0x100 / scaley
;
847 int strides
= spu
->stride
* unscaled_y
;
848 int scaled_strides
= spu
->scaled_stride
* y
;
849 for (x
= 0; x
< spu
->scaled_width
; ++x
) {
850 int unscaled_x
= x
* 0x100 / scalex
;
851 spu
->scaled_image
[scaled_strides
+ x
] = spu
->image
[strides
+ unscaled_x
];
852 spu
->scaled_aimage
[scaled_strides
+ x
] = spu
->aimage
[strides
+ unscaled_x
];
858 /* Intermediate antialiasing. */
859 for (y
= 0; y
< spu
->scaled_height
; ++y
) {
860 const unsigned int unscaled_top
= y
* spu
->orig_frame_height
/ dys
;
861 unsigned int unscaled_bottom
= (y
+ 1) * spu
->orig_frame_height
/ dys
;
862 if (unscaled_bottom
>= spu
->height
)
863 unscaled_bottom
= spu
->height
- 1;
864 for (x
= 0; x
< spu
->scaled_width
; ++x
) {
865 const unsigned int unscaled_left
= x
* spu
->orig_frame_width
/ dxs
;
866 unsigned int unscaled_right
= (x
+ 1) * spu
->orig_frame_width
/ dxs
;
867 unsigned int color
= 0;
868 unsigned int alpha
= 0;
869 unsigned int walkx
, walky
;
870 unsigned int base
, tmp
;
871 if (unscaled_right
>= spu
->width
)
872 unscaled_right
= spu
->width
- 1;
873 for (walky
= unscaled_top
; walky
<= unscaled_bottom
; ++walky
)
874 for (walkx
= unscaled_left
; walkx
<= unscaled_right
; ++walkx
) {
875 base
= walky
* spu
->stride
+ walkx
;
876 tmp
= canon_alpha(spu
->aimage
[base
]);
878 color
+= tmp
* spu
->image
[base
];
880 base
= y
* spu
->scaled_stride
+ x
;
881 spu
->scaled_image
[base
] = alpha
? color
/ alpha
: 0;
882 spu
->scaled_aimage
[base
] =
883 alpha
* (1 + unscaled_bottom
- unscaled_top
) * (1 + unscaled_right
- unscaled_left
);
884 /* spu->scaled_aimage[base] =
885 alpha * dxs * dys / spu->orig_frame_width / spu->orig_frame_height; */
886 if (spu
->scaled_aimage
[base
]) {
887 spu
->scaled_aimage
[base
] = 256 - spu
->scaled_aimage
[base
];
888 if (spu
->scaled_aimage
[base
] + spu
->scaled_image
[base
] > 255)
889 spu
->scaled_image
[base
] = 256 - spu
->scaled_aimage
[base
];
897 /* Best antialiasing. Very slow. */
898 /* Any pixel (x, y) represents pixels from the original
899 rectangular region comprised between the columns
900 unscaled_y and unscaled_y + 0x100 / scaley and the rows
901 unscaled_x and unscaled_x + 0x100 / scalex
903 The original rectangular region that the scaled pixel
904 represents is cut in 9 rectangular areas like this:
906 +---+-----------------+---+
908 +---+-----------------+---+
912 +---+-----------------+---+
914 +---+-----------------+---+
916 The width of the left column is at most one pixel and
917 it is never null and its right column is at a pixel
918 boundary. The height of the top row is at most one
919 pixel it is never null and its bottom row is at a
920 pixel boundary. The width and height of region 5 are
921 integral values. The width of the right column is
922 what remains and is less than one pixel. The height
923 of the bottom row is what remains and is less than
926 The row above 1, 2, 3 is unscaled_y. The row between
927 1, 2, 3 and 4, 5, 6 is top_low_row. The row between 4,
928 5, 6 and 7, 8, 9 is (unsigned int)unscaled_y_bottom.
929 The row beneath 7, 8, 9 is unscaled_y_bottom.
931 The column left of 1, 4, 7 is unscaled_x. The column
932 between 1, 4, 7 and 2, 5, 8 is left_right_column. The
933 column between 2, 5, 8 and 3, 6, 9 is (unsigned
934 int)unscaled_x_right. The column right of 3, 6, 9 is
936 const double inv_scalex
= (double) 0x100 / scalex
;
937 const double inv_scaley
= (double) 0x100 / scaley
;
938 for (y
= 0; y
< spu
->scaled_height
; ++y
) {
939 const double unscaled_y
= y
* inv_scaley
;
940 const double unscaled_y_bottom
= unscaled_y
+ inv_scaley
;
941 const unsigned int top_low_row
= FFMIN(unscaled_y_bottom
, unscaled_y
+ 1.0);
942 const double top
= top_low_row
- unscaled_y
;
943 const unsigned int height
= unscaled_y_bottom
> top_low_row
944 ? (unsigned int) unscaled_y_bottom
- top_low_row
946 const double bottom
= unscaled_y_bottom
> top_low_row
947 ? unscaled_y_bottom
- floor(unscaled_y_bottom
)
949 for (x
= 0; x
< spu
->scaled_width
; ++x
) {
950 const double unscaled_x
= x
* inv_scalex
;
951 const double unscaled_x_right
= unscaled_x
+ inv_scalex
;
952 const unsigned int left_right_column
= FFMIN(unscaled_x_right
, unscaled_x
+ 1.0);
953 const double left
= left_right_column
- unscaled_x
;
954 const unsigned int width
= unscaled_x_right
> left_right_column
955 ? (unsigned int) unscaled_x_right
- left_right_column
957 const double right
= unscaled_x_right
> left_right_column
958 ? unscaled_x_right
- floor(unscaled_x_right
)
964 /* Now use these informations to compute a good alpha,
965 and lightness. The sum is on each of the 9
966 region's surface and alpha and lightness.
968 transformed alpha = sum(surface * alpha) / sum(surface)
969 transformed color = sum(surface * alpha * color) / sum(surface * alpha)
971 /* 1: top left part */
972 base
= spu
->stride
* (unsigned int) unscaled_y
;
973 tmp
= left
* top
* canon_alpha(spu
->aimage
[base
+ (unsigned int) unscaled_x
]);
975 color
+= tmp
* spu
->image
[base
+ (unsigned int) unscaled_x
];
976 /* 2: top center part */
979 for (walkx
= left_right_column
; walkx
< (unsigned int) unscaled_x_right
; ++walkx
) {
980 base
= spu
->stride
* (unsigned int) unscaled_y
+ walkx
;
981 tmp
= /* 1.0 * */ top
* canon_alpha(spu
->aimage
[base
]);
983 color
+= tmp
* spu
->image
[base
];
986 /* 3: top right part */
988 base
= spu
->stride
* (unsigned int) unscaled_y
+ (unsigned int) unscaled_x_right
;
989 tmp
= right
* top
* canon_alpha(spu
->aimage
[base
]);
991 color
+= tmp
* spu
->image
[base
];
993 /* 4: center left part */
996 for (walky
= top_low_row
; walky
< (unsigned int) unscaled_y_bottom
; ++walky
) {
997 base
= spu
->stride
* walky
+ (unsigned int) unscaled_x
;
998 tmp
= left
/* * 1.0 */ * canon_alpha(spu
->aimage
[base
]);
1000 color
+= tmp
* spu
->image
[base
];
1003 /* 5: center part */
1004 if (width
> 0 && height
> 0) {
1006 for (walky
= top_low_row
; walky
< (unsigned int) unscaled_y_bottom
; ++walky
) {
1008 base
= spu
->stride
* walky
;
1009 for (walkx
= left_right_column
; walkx
< (unsigned int) unscaled_x_right
; ++walkx
) {
1010 tmp
= /* 1.0 * 1.0 * */ canon_alpha(spu
->aimage
[base
+ walkx
]);
1012 color
+= tmp
* spu
->image
[base
+ walkx
];
1016 /* 6: center right part */
1017 if (right
> 0.0 && height
> 0) {
1019 for (walky
= top_low_row
; walky
< (unsigned int) unscaled_y_bottom
; ++walky
) {
1020 base
= spu
->stride
* walky
+ (unsigned int) unscaled_x_right
;
1021 tmp
= right
/* * 1.0 */ * canon_alpha(spu
->aimage
[base
]);
1023 color
+= tmp
* spu
->image
[base
];
1026 /* 7: bottom left part */
1028 base
= spu
->stride
* (unsigned int) unscaled_y_bottom
+ (unsigned int) unscaled_x
;
1029 tmp
= left
* bottom
* canon_alpha(spu
->aimage
[base
]);
1031 color
+= tmp
* spu
->image
[base
];
1033 /* 8: bottom center part */
1034 if (width
> 0 && bottom
> 0.0) {
1036 base
= spu
->stride
* (unsigned int) unscaled_y_bottom
;
1037 for (walkx
= left_right_column
; walkx
< (unsigned int) unscaled_x_right
; ++walkx
) {
1038 tmp
= /* 1.0 * */ bottom
* canon_alpha(spu
->aimage
[base
+ walkx
]);
1040 color
+= tmp
* spu
->image
[base
+ walkx
];
1043 /* 9: bottom right part */
1044 if (right
> 0.0 && bottom
> 0.0) {
1045 base
= spu
->stride
* (unsigned int) unscaled_y_bottom
+ (unsigned int) unscaled_x_right
;
1046 tmp
= right
* bottom
* canon_alpha(spu
->aimage
[base
]);
1048 color
+= tmp
* spu
->image
[base
];
1050 /* Finally mix these transparency and brightness information suitably */
1051 base
= spu
->scaled_stride
* y
+ x
;
1052 spu
->scaled_image
[base
] = alpha
> 0 ? color
/ alpha
: 0;
1053 spu
->scaled_aimage
[base
] = alpha
* scalex
* scaley
/ 0x10000;
1054 if (spu
->scaled_aimage
[base
]) {
1055 spu
->scaled_aimage
[base
] = 256 - spu
->scaled_aimage
[base
];
1056 if (spu
->scaled_aimage
[base
] + spu
->scaled_image
[base
] > 255)
1057 spu
->scaled_image
[base
] = 256 - spu
->scaled_aimage
[base
];
1064 /* Kludge: draw_alpha needs width multiple of 8. */
1065 if (spu
->scaled_width
< spu
->scaled_stride
)
1066 for (y
= 0; y
< spu
->scaled_height
; ++y
) {
1067 memset(spu
->scaled_aimage
+ y
* spu
->scaled_stride
+ spu
->scaled_width
, 0,
1068 spu
->scaled_stride
- spu
->scaled_width
);
1070 spu
->scaled_frame_width
= dxs
;
1071 spu
->scaled_frame_height
= dys
;
1074 if (spu
->scaled_image
){
1075 switch (spu_alignment
) {
1077 spu
->scaled_start_row
= dys
*sub_pos
/100;
1078 if (spu
->scaled_start_row
+ spu
->scaled_height
> dys
)
1079 spu
->scaled_start_row
= dys
- spu
->scaled_height
;
1082 spu
->scaled_start_row
= dys
*sub_pos
/100 - spu
->scaled_height
/2;
1083 if (sub_pos
>= 50 && spu
->scaled_start_row
+ spu
->scaled_height
> dys
)
1084 spu
->scaled_start_row
= dys
- spu
->scaled_height
;
1087 spu
->scaled_start_row
= dys
*sub_pos
/100 - spu
->scaled_height
;
1090 draw_alpha(spu
->scaled_start_col
, spu
->scaled_start_row
, spu
->scaled_width
, spu
->scaled_height
,
1091 spu
->scaled_image
, spu
->scaled_aimage
, spu
->scaled_stride
);
1092 spu
->spu_changed
= 0;
1098 mp_msg(MSGT_SPUDEC
,MSGL_DBG2
,"SPU not displayed: start_pts=%d end_pts=%d now_pts=%d\n",
1099 spu
->start_pts
, spu
->end_pts
, spu
->now_pts
);
1103 void spudec_update_palette(void * this, unsigned int *palette
)
1105 spudec_handle_t
*spu
= (spudec_handle_t
*) this;
1106 if (spu
&& palette
) {
1107 memcpy(spu
->global_palette
, palette
, sizeof(spu
->global_palette
));
1109 spu
->hw_spu
->control(VOCTRL_SET_SPU_PALETTE
,spu
->global_palette
);
1113 void spudec_set_font_factor(void * this, double factor
)
1115 spudec_handle_t
*spu
= (spudec_handle_t
*) this;
1116 spu
->font_start_level
= (int)(0xF0-(0xE0*factor
));
1119 void *spudec_new_scaled(unsigned int *palette
, unsigned int frame_width
, unsigned int frame_height
)
1121 return spudec_new_scaled_vobsub(palette
, NULL
, 0, frame_width
, frame_height
);
1124 /* get palette custom color, width, height from .idx file */
1125 void *spudec_new_scaled_vobsub(unsigned int *palette
, unsigned int *cuspal
, unsigned int custom
, unsigned int frame_width
, unsigned int frame_height
)
1127 spudec_handle_t
*this = calloc(1, sizeof(spudec_handle_t
));
1129 //(fprintf(stderr,"VobSub Custom Palette: %d,%d,%d,%d", this->cuspal[0], this->cuspal[1], this->cuspal[2],this->cuspal[3]);
1130 this->packet
= NULL
;
1132 this->scaled_image
= NULL
;
1133 /* XXX Although the video frame is some size, the SPU frame is
1134 always maximum size i.e. 720 wide and 576 or 480 high */
1135 this->orig_frame_width
= 720;
1136 this->orig_frame_height
= (frame_height
== 480 || frame_height
== 240) ? 480 : 576;
1137 this->custom
= custom
;
1139 this->auto_palette
= 1;
1141 memcpy(this->global_palette
, palette
, sizeof(this->global_palette
));
1142 this->auto_palette
= 0;
1144 this->custom
= custom
;
1145 if (custom
&& cuspal
) {
1146 memcpy(this->cuspal
, cuspal
, sizeof(this->cuspal
));
1147 this->auto_palette
= 0;
1149 // forced subtitles default: show all subtitles
1150 this->forced_subs_only
=0;
1151 this->is_forced_sub
=0;
1154 mp_msg(MSGT_SPUDEC
,MSGL_FATAL
, "FATAL: spudec_init: calloc");
1158 void *spudec_new(unsigned int *palette
)
1160 return spudec_new_scaled(palette
, 0, 0);
1163 void spudec_free(void *this)
1165 spudec_handle_t
*spu
= (spudec_handle_t
*)this;
1167 while (spu
->queue_head
)
1168 spudec_free_packet(spudec_dequeue_packet(spu
));
1171 if (spu
->scaled_image
)
1172 free(spu
->scaled_image
);
1179 void spudec_set_hw_spu(void *this, const vo_functions_t
*hw_spu
)
1181 spudec_handle_t
*spu
= (spudec_handle_t
*)this;
1184 spu
->hw_spu
= hw_spu
;
1185 hw_spu
->control(VOCTRL_SET_SPU_PALETTE
,spu
->global_palette
);