]> git.sesse.net Git - vlc/blob - modules/codec/telx.c
* modules/codec/telx.c: Pedantic coding style changes.
[vlc] / modules / codec / telx.c
1 /*****************************************************************************
2  * telx.c : Minimalistic Teletext subtitles decoder
3  *****************************************************************************
4  * Copyright (C) 2007 Vincent Penne
5  * Some code converted from ProjectX java dvb decoder (c) 2001-2005 by dvb.matt
6  * $Id$
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22 /*****************************************************************************
23  * 
24  * information on teletext format can be found here : 
25  * http://pdc.ro.nu/teletext.html
26  *
27  * TODO :
28  *
29  *****************************************************************************/
30 #include <vlc/vlc.h>
31 #include <assert.h>
32 #include <stdint.h>
33
34 /* This is an ugly test so that this source compile for both 0.8.6 and current
35  * trunk version. Considere this hack to be temporary, but I need it so that
36  * I can maintain my patch for both current svn and 0.8.6 in an easy way. */
37 #ifdef VLC_ENOITEM
38 /* svn trunk */
39 #include "vlc_vout.h"
40 #else
41 /* 0.8.6 */
42 #include <vlc/vout.h>
43 #include <vlc/decoder.h>
44 #include <vlc/sout.h>
45 /* #include "vlc_es.h" */
46 /* #include "vlc_block.h" */
47 /* #include "vlc_video.h" */
48 /* #include "vlc_spu.h" */
49 #endif
50
51 #include "vlc_bits.h"
52 #include "vlc_codec.h"
53
54
55 /* #define TELX_DEBUG */
56
57 #ifdef TELX_DEBUG
58 #   define dbg( a ) msg_Dbg a 
59 #else
60 #   define dbg( a )
61 #endif
62
63 /*****************************************************************************
64  * Local prototypes
65  *****************************************************************************/
66 static int telx_conf_cb ( vlc_object_t *,      /* variable's object */
67                           char const *,            /* variable name */
68                           vlc_value_t,                 /* old value */
69                           vlc_value_t,                 /* new value */
70                           void * );                /* callback data */
71
72 /*****************************************************************************
73  * Module descriptor.
74  *****************************************************************************/
75 static int  Open ( vlc_object_t * );
76 static void Close( vlc_object_t * );
77 static subpicture_t *Decode( decoder_t *, block_t ** );
78
79
80 #define PAGE_TEXT N_("Teletext page")
81 #define PAGE_LONGTEXT N_("Set displayed teletext page for subtitles, 0 for all pages, 888 should be a standard value. Just leave it to zero if your stream has only one language for subtitles.")
82
83 #define IGNORE_SUB_FLAG_TEXT N_("Ignore subtitle flag")
84 #define IGNORE_SUB_FLAG_LONGTEXT N_("Ignore the subtitle flag, try this if your subtitles don't appear.")
85
86 vlc_module_begin();
87 #   define TELX_CFG_PREFIX "telx-"
88     set_description( _("Teletext subtitles decoder") );
89     set_capability( "decoder", 50 );
90     set_category( CAT_INPUT );
91     set_subcategory( SUBCAT_INPUT_SCODEC );
92     set_callbacks( Open, Close );
93
94     add_integer( "telx-page", 0, telx_conf_cb, PAGE_TEXT, PAGE_LONGTEXT,
95                  VLC_FALSE );
96     add_bool( "telx-ignore-subtitle-flag", 0, telx_conf_cb,
97               IGNORE_SUB_FLAG_TEXT, IGNORE_SUB_FLAG_LONGTEXT, VLC_TRUE );
98
99 vlc_module_end();
100
101 /****************************************************************************
102  * Local structures
103  ****************************************************************************/
104
105 struct decoder_sys_t
106 {
107   int         i_align;
108   vlc_bool_t  b_is_subtitle[9];
109   char        ppsz_lines[32][128];
110   char        psz_prev_text[512];
111   mtime_t     prev_pts;
112   int         i_page;
113   vlc_bool_t  b_erase[9];
114   uint16_t *  pi_active_national_set[9];
115 };
116
117 /****************************************************************************
118  * Local data
119  ****************************************************************************/
120
121 static int i_conf_wanted_page = 0; /* default 0 = all pages */
122 static vlc_bool_t b_ignore_sub_flag = 0;
123
124 /*
125  * My doc only mentions 13 national characters, but experiments show there 
126  * are more, in france for example I already found two more (0x9 and 0xb).
127  *
128  * Conversion is in this order :
129  *
130  * 0x23 0x24 0x40 0x5b 0x5c 0x5d 0x5e 0x5f 0x60 0x7b 0x7c 0x7d 0x7e
131  * (these are the standard ones)
132  * 0x08 0x09 0x0a 0x0b 0x0c 0x0d (apparently a control character) 0x0e 0x0f
133  */
134
135 static uint16_t ppi_national_subsets[][20] =
136 {
137   { 0x00a3, 0x0024, 0x0040, 0x00ab, 0x00bd, 0x00bb, 0x005e, 0x0023, 
138     0x002d, 0x00bc, 0x00a6, 0x00be, 0x00f7 }, /* english ,000 */
139
140   { 0x00e9, 0x00ef, 0x00e0, 0x00eb, 0x00ea, 0x00f9, 0x00ee, 0x0023,
141     0x00e8, 0x00e2, 0x00f4, 0x00fb, 0x00e7, 0, 0x00eb, 0, 0x00ef }, /* french  ,001 */
142
143   { 0x0023, 0x00a4, 0x00c9, 0x00c4, 0x00d6, 0x00c5, 0x00dc, 0x005f, 
144     0x00e9, 0x00e4, 0x00f6, 0x00e5, 0x00fc }, /* swedish,finnish,hungarian ,010 */
145
146   { 0x0023, 0x016f, 0x010d, 0x0165, 0x017e, 0x00fd, 0x00ed, 0x0159, 
147     0x00e9, 0x00e1, 0x0115, 0x00fa, 0x0161 }, /* czech,slovak  ,011 */
148
149   { 0x0023, 0x0024, 0x00a7, 0x00c4, 0x00d6, 0x00dc, 0x005e, 0x005f, 
150     0x00b0, 0x00e4, 0x00f6, 0x00fc, 0x00df }, /* german ,100 */
151
152   { 0x00e7, 0x0024, 0x00a1, 0x00e1, 0x00e9, 0x00ed, 0x00f3, 0x00fa, 
153     0x00bf, 0x00fc, 0x00f1, 0x00e8, 0x00e0 }, /* portuguese,spanish ,101 */
154
155   { 0x00a3, 0x0024, 0x00e9, 0x00b0, 0x00e7, 0x00bb, 0x005e, 0x0023, 
156     0x00f9, 0x00e0, 0x00f2, 0x00e8, 0x00ec }, /* italian  ,110 */
157
158   { 0x0023, 0x00a4, 0x0162, 0x00c2, 0x015e, 0x0102, 0x00ce, 0x0131, 
159     0x0163, 0x00e2, 0x015f, 0x0103, 0x00ee }, /* rumanian ,111 */
160
161   { 0x0023, 0x0024, 0x0160, 0x0117, 0x0119, 0x017d, 0x010d, 0x016b, 
162     0x0161, 0x0105, 0x0173, 0x017e, 0x012f }, /* lettish,lithuanian ,1000 */
163
164   { 0x0023, 0x0144, 0x0105, 0x005a, 0x015a, 0x0141, 0x0107, 0x00f3, 
165     0x0119, 0x017c, 0x015b, 0x0142, 0x017a }, /* polish,  1001 */
166
167   { 0x0023, 0x00cb, 0x010c, 0x0106, 0x017d, 0x0110, 0x0160, 0x00eb, 
168     0x010d, 0x0107, 0x017e, 0x0111, 0x0161 }, /* serbian,croatian,slovenian, 1010 */
169
170   { 0x0023, 0x00f5, 0x0160, 0x00c4, 0x00d6, 0x017e, 0x00dc, 0x00d5, 
171     0x0161, 0x00e4, 0x00f6, 0x017e, 0x00fc }, /* estonian  ,1011 */
172
173   { 0x0054, 0x011f, 0x0130, 0x015e, 0x00d6, 0x00c7, 0x00dc, 0x011e, 
174     0x0131, 0x015f, 0x00f6, 0x00e7, 0x00fc }, /* turkish  ,1100 */
175 };
176
177
178 /*****************************************************************************
179  * Open: probe the decoder and return score
180  *****************************************************************************
181  * Tries to launch a decoder and return score so that the interface is able
182  * to chose.
183  *****************************************************************************/
184 static int Open( vlc_object_t *p_this )
185 {
186     decoder_t     *p_dec = (decoder_t *) p_this;
187     decoder_sys_t *p_sys = NULL;
188     vlc_value_t    val;
189     int            i;
190
191     if( p_dec->fmt_in.i_codec != VLC_FOURCC('t','e','l','x'))
192     {
193         return VLC_EGENERIC;
194     }
195
196     p_dec->pf_decode_sub = Decode;
197     p_sys = p_dec->p_sys = malloc( sizeof(decoder_sys_t) );
198     if( p_sys == NULL )
199     {
200         msg_Err( p_dec, "out of memory" );
201         return VLC_ENOMEM;
202     }
203
204     memset( p_sys, 0, sizeof(decoder_sys_t) );
205
206     p_sys->i_align = 0;
207     for ( i = 0; i < 9; i++ )
208         p_sys->pi_active_national_set[i] = ppi_national_subsets[1];
209
210     var_Create( p_dec, "telx-page", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
211     var_Get( p_dec, "telx-page", &val );
212     i_conf_wanted_page = val.i_int;
213
214     var_Create( p_dec, "telx-ignore-subtitle-flag",
215                 VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
216     var_Get( p_dec, "telx-ignore-subtitle-flag", &val );
217     b_ignore_sub_flag = val.b_bool;
218
219     return VLC_SUCCESS;
220
221 /*  error: */
222 /*     if (p_sys) { */
223 /*       free(p_sys); */
224 /*       p_sys = NULL; */
225 /*     } */
226 /*     return VLC_EGENERIC; */
227 }
228
229 /*****************************************************************************
230  * Config callback
231  *****************************************************************************/
232 static int telx_conf_cb ( vlc_object_t * obj,      /* variable's object */
233                           char const * name,       /* variable name */
234                           vlc_value_t oldv,        /* old value */
235                           vlc_value_t newv,        /* new value */
236                           void * data)             /* callback data */
237 {
238     if ( !strcmp(name, "telx-page") )
239     {
240         i_conf_wanted_page = newv.i_int;
241         dbg((obj, "display teletext page changed to %d\n", i_conf_wanted_page));
242     }
243     else if ( !strcmp(name, "telx-ignore-subtitle-flag") )
244     {
245         b_ignore_sub_flag = newv.b_bool;
246         dbg((obj, "ignore sub flag changed to %d\n", (int) b_ignore_sub_flag));
247     }
248
249     return 0;
250 }
251
252
253 /*****************************************************************************
254  * Close:
255  *****************************************************************************/
256 static void Close( vlc_object_t *p_this )
257 {
258     decoder_t     *p_dec = (decoder_t*) p_this;
259     decoder_sys_t *p_sys = p_dec->p_sys;
260
261     free( p_sys );
262 }
263
264 /**************************
265  * change bits endianness *
266  **************************/
267 static uint8_t bytereverse( int n )
268 {
269     n = (((n >> 1) & 0x55) | ((n << 1) & 0xaa));
270     n = (((n >> 2) & 0x33) | ((n << 2) & 0xcc));
271     n = (((n >> 4) & 0x0f) | ((n << 4) & 0xf0));
272     return n;
273 }
274
275 static int hamming_8_4( int a )
276 {
277     switch (a) {
278     case 0xA8: 
279         return 0;
280     case 0x0B: 
281         return 1;
282     case 0x26: 
283         return 2;
284     case 0x85: 
285         return 3;
286     case 0x92: 
287         return 4;
288     case 0x31: 
289         return 5;
290     case 0x1C: 
291         return 6;
292     case 0xBF: 
293         return 7;
294     case 0x40: 
295         return 8;
296     case 0xE3: 
297         return 9;
298     case 0xCE: 
299         return 10;
300     case 0x6D: 
301         return 11;
302     case 0x7A: 
303         return 12;
304     case 0xD9: 
305         return 13;
306     case 0xF4: 
307         return 14;
308     case 0x57: 
309         return 15;
310     default: 
311         return -1;     // decoding error , not yet corrected
312     }
313 }
314
315 // utc-2 --> utf-8
316 // this is not a general function, but it's enough for what we do here
317 static void to_utf8( char * res, uint16_t ch )
318 {
319     if( ch >= 0x80 )
320     {
321         if( ch >= 0x800 )
322         {
323             res[0] = (ch >> 12) | 0xE0;
324             res[1] = ((ch >> 6) & 0x3F) | 0x80;
325             res[2] = (ch & 0x3F) | 0x80;
326             res[3] = 0;
327         }
328         else
329         {
330             res[0] = (ch >> 6) | 0xC0;
331             res[1] = (ch & 0x3F) | 0x80;
332             res[2] = 0;
333         }
334     }
335     else
336     {
337         res[0] = ch;
338         res[1] = 0;
339     }
340 }
341
342 static void decode_string( char * res, int res_len, 
343                            decoder_sys_t *p_sys, int magazine, 
344                            uint8_t * packet, int len )
345 {
346     char utf8[7];
347     char * pt = res;
348     int i;
349
350     for ( i = 0; i < len; i++ )
351     {
352         int in = bytereverse( packet[i] ) & 0x7f;
353         uint16_t out = 32;
354         size_t l;
355
356         switch ( in )
357         {
358         /* special national characters */
359         case 0x23:
360             out = p_sys->pi_active_national_set[magazine][0]; 
361             break; 
362         case 0x24:
363             out = p_sys->pi_active_national_set[magazine][1]; 
364             break; 
365         case 0x40:
366             out = p_sys->pi_active_national_set[magazine][2]; 
367             break; 
368         case 0x5b:
369             out = p_sys->pi_active_national_set[magazine][3]; 
370             break; 
371         case 0x5c:
372             out = p_sys->pi_active_national_set[magazine][4]; 
373             break; 
374         case 0x5d:
375             out = p_sys->pi_active_national_set[magazine][5]; 
376             break; 
377         case 0x5e:
378             out = p_sys->pi_active_national_set[magazine][6]; 
379             break; 
380         case 0x5f:
381             out = p_sys->pi_active_national_set[magazine][7]; 
382             break; 
383         case 0x60:
384             out = p_sys->pi_active_national_set[magazine][8]; 
385             break; 
386         case 0x7b:
387             out = p_sys->pi_active_national_set[magazine][9]; 
388             break; 
389         case 0x7c:
390             out = p_sys->pi_active_national_set[magazine][10]; 
391             break; 
392         case 0x7d:
393             out = p_sys->pi_active_national_set[magazine][11]; 
394             break; 
395         case 0x7e:
396             out = p_sys->pi_active_national_set[magazine][12]; 
397             break; 
398
399         /* some special control characters (empirical) */
400         case 0x0d:
401             /* apparently this starts a sequence that ends with 0xb 0xb */
402             while ( i + 1 < len && (bytereverse( packet[i+1] ) & 0x7f) != 0x0b )
403                 i++;
404             i += 2;
405             break;
406             /* goto skip; */
407
408         default:
409             /* non documented national range 0x08 - 0x0f */
410             if ( in >= 0x08 && in <= 0x0f )
411             {
412                 out = p_sys->pi_active_national_set[magazine][13 + in - 8];
413                 break;
414             }
415
416             /* normal ascii */
417             if ( in > 32 && in < 0x7f )
418                 out = in;
419         }
420
421         /* handle undefined national characters */
422         if ( out == 0 )
423             out = 32;
424
425         /* convert to utf-8 */
426         to_utf8( utf8, out );
427         l = strlen( utf8 );
428         if ( pt + l < res + res_len - 1 )
429         {
430             strcpy(pt, utf8);
431             pt += l;
432         }
433
434         /* skip: ; */
435     }
436     /* end: */
437     *pt++ = 0;
438 }  
439
440 /*****************************************************************************
441  * Decode:
442  *****************************************************************************/
443 static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
444 {
445     decoder_sys_t *p_sys = p_dec->p_sys;
446     block_t       *p_block;
447     subpicture_t  *p_spu = NULL;
448     video_format_t fmt;
449     /* int erase = 0; */
450     int len, offset;
451     int i_wanted_magazine = i_conf_wanted_page / 100;
452     int i_wanted_page = 0x10 * ((i_conf_wanted_page % 100) / 10)
453                          | (i_conf_wanted_page % 10);
454     vlc_bool_t b_update = VLC_FALSE;
455     char psz_text[512], *pt = psz_text;
456     char psz_line[256];
457     int i, total;
458
459     if( pp_block == NULL || *pp_block == NULL ) return NULL;
460     p_block = *pp_block;
461     *pp_block = NULL;
462
463     len = p_block->i_buffer;
464     for ( offset = 1; offset + 46 <= len; offset += 46 )
465     {
466         uint8_t * packet = (uint8_t *) p_block->p_buffer+offset;
467       
468         /* dbg((p_dec, "header %02x %02x %02x\n", packet[0], packet[1], packet[2])); */
469 /*       if (packet[1] != 0x2C) { */
470 /*         printf("wrong header\n"); */
471 /*         //goto error; */
472 /*         continue; */
473 /*       } */
474
475         int mpag = (hamming_8_4( packet[4] ) << 4) | hamming_8_4( packet[5] );
476         int row, magazine;
477         if ( mpag < 0 )
478         {
479             /* decode error */
480             dbg((p_dec, "mpag hamming error\n"));
481             continue;
482         }
483
484         row = 0xFF & bytereverse(mpag);
485         magazine = (7 & row) == 0 ? 8 : (7 & row);
486         row >>= 3;
487
488         if ( i_conf_wanted_page && magazine != i_wanted_magazine ) continue;
489
490         if ( row == 0 )
491         {
492             /* row 0 : flags and header line */
493             int flag = 0;
494             int a;
495             char *t = NULL;
496             
497             for ( a = 0; a < 6; a++ )
498             {
499                 flag |= (0xF & (bytereverse( hamming_8_4(packet[8 + a]) ) >> 4))
500                           << (a * 4);
501             }
502
503             dbg((p_dec, "mag %d flags %x page %x character set %d subtitles %d\n%s\n", magazine, flag, 
504                  //p_sys->i_page, 
505                  (0xF0 & bytereverse(hamming_8_4(packet[7]) )) |
506                  (0xF & bytereverse(hamming_8_4(packet[6]) )>>4 ),
507                  7 & flag>>21, 1 & flag>>15, t));
508
509     /*         if (!b_ignore_sub_flag && !(1 & flag>>15)) */
510     /*           continue; */
511
512             p_sys->i_page = (0xF0 & bytereverse( hamming_8_4(packet[7]) )) |
513                              (0xF & (bytereverse( hamming_8_4(packet[6]) ) >> 4) );
514
515             decode_string( psz_line, sizeof(psz_line), p_sys, magazine,
516                            packet + 14, 40 - 14 );
517
518             p_sys->pi_active_national_set[magazine] =
519                                  ppi_national_subsets[7 & (flag >> 21)];
520
521             p_sys->b_is_subtitle[magazine] = b_ignore_sub_flag
522                                               || (1 & (flag >> 15));
523             
524             if ( (i_conf_wanted_page && p_sys->i_page != i_wanted_page)
525                    || !p_sys->b_is_subtitle[magazine] )
526                 continue;
527
528             p_sys->b_erase[magazine] = (1 & (flag >> 7));
529
530             dbg((p_dec, "%ld --> %ld\n", (long int) p_block->i_pts, (long int)(p_sys->prev_pts+1500000)));
531             /* kludge here : 
532              * we ignore the erase flag if it happens less than 1.5 seconds
533              * before last caption
534              *TODO make this time configurable */
535             if ( p_block->i_pts > p_sys->prev_pts + 1500000 && 
536                  p_sys->b_erase[magazine] )
537             {
538                 int i;
539               
540                 dbg((p_dec, "ERASE !\n"));
541
542                 p_sys->b_erase[magazine] = 0;          
543                 for ( i = 1; i < 32; i++ )
544                 {
545                     if ( !p_sys->ppsz_lines[i][0] ) continue;
546                     /* b_update = VLC_TRUE; */
547                     p_sys->ppsz_lines[i][0] = 0;
548                 }
549             }
550
551             /* replace the row if it's different */
552             if ( strcmp(psz_line, p_sys->ppsz_lines[row]) )
553             {
554                 strncpy( p_sys->ppsz_lines[row], psz_line,
555                          sizeof(p_sys->ppsz_lines[row]) - 1);
556             }
557             b_update = VLC_TRUE;
558
559         }
560         else if ( row < 24 )
561         {
562             char * t;
563             int i;
564             /* row 1-23 : normal lines */
565
566             if ( (i_conf_wanted_page && p_sys->i_page != i_wanted_page)
567                    || !p_sys->b_is_subtitle[magazine] )
568                 continue;
569
570             decode_string( psz_line, sizeof(psz_line), p_sys, magazine,
571                            packet + 6, 40 );
572             t = psz_line;
573
574             /* remove starting spaces */
575             while ( *t == 32 ) t++;
576
577             /* remove trailing spaces */
578             for ( i = strlen(t) - 1; i >= 0 && t[i] == 32; i-- );
579             t[i + 1] = 0;
580
581             /* replace the row if it's different */
582             if ( strcmp( t, p_sys->ppsz_lines[row] ) )
583             {
584                 strncpy( p_sys->ppsz_lines[row], t,
585                          sizeof(p_sys->ppsz_lines[row]) - 1 );
586                 b_update = VLC_TRUE;
587             }
588
589             if (t[0])
590                 p_sys->prev_pts = p_block->i_pts;
591
592             dbg((p_dec, "%d %d : ", magazine, row));
593             dbg((p_dec, "%s\n", t));
594
595 #ifdef TELX_DEBUG
596             {
597                 char dbg[256];
598                 dbg[0] = 0;
599                 for ( i = 0; i < 40; i++ )
600                 {
601                     int in = bytereverse(packet[6 + i]) & 0x7f;
602                     sprintf(dbg + strlen(dbg), "%02x ", in);
603                 }
604                 dbg((p_dec, "%s\n", dbg));
605                 dbg[0] = 0;
606                 for ( i = 0; i < 40; i++ )
607                 {
608                     decode_string( psz_line, sizeof(psz_line), p_sys, magazine,
609                                    packet + 6 + i, 1 );
610                     sprintf( dbg + strlen(dbg), "%s  ", psz_line );
611                 }
612                 dbg((p_dec, "%s\n", dbg));
613             }
614 #endif
615         
616         }
617         else if ( row == 25 )
618         {
619             /* row 25 : alternate header line */
620             if ( (i_conf_wanted_page && p_sys->i_page != i_wanted_page)
621                    || !p_sys->b_is_subtitle[magazine] )
622                 continue;
623
624             decode_string( psz_line, sizeof(psz_line), p_sys, magazine,
625                            packet + 6, 40 );
626
627             /* replace the row if it's different */
628             if ( strcmp( psz_line, p_sys->ppsz_lines[0] ) )
629             {
630                 strncpy( p_sys->ppsz_lines[0], psz_line,
631                          sizeof(p_sys->ppsz_lines[0]) - 1 );
632                 /* b_update = VLC_TRUE; */
633             }
634         }
635 /*       else if (row == 26) { */
636 /*         // row 26 : TV listings */
637 /*       } else */
638 /*         dbg((p_dec, "%d %d : %s\n", magazine, row, decode_string(p_sys, magazine, packet+6, 40))); */
639     }
640
641     if ( !b_update )
642         goto error;
643
644     total = 0;
645     for ( i = 1; i < 24; i++ )
646     {
647         size_t l = strlen( p_sys->ppsz_lines[i] );
648
649         if ( l > sizeof(psz_text) - total - 1 )
650             l = sizeof(psz_text) - total - 1;
651
652         if ( l > 0 )
653         {
654             memcpy( pt, p_sys->ppsz_lines[i], l );
655             total += l;
656             pt += l;
657             if ( sizeof(psz_text) - total - 1 > 0 )
658             {
659                 *pt++ = '\n';
660                 total++;
661             }
662         }
663     }
664     *pt = 0;
665
666     if ( !strcmp(psz_text, p_sys->psz_prev_text) )
667         goto error;
668
669     dbg((p_dec, "UPDATE TELETEXT PICTURE\n"));
670
671     assert( sizeof(p_sys->psz_prev_text) >= sizeof(psz_text) );
672     strcpy( p_sys->psz_prev_text, psz_text );
673
674     /* Create the subpicture unit */
675     p_spu = p_dec->pf_spu_buffer_new( p_dec );
676     if( !p_spu )
677     {
678         msg_Warn( p_dec, "can't get spu buffer" );
679         goto error;
680     }
681     
682     p_spu->b_pausable = VLC_TRUE;
683     
684     /* Create a new subpicture region */
685     memset( &fmt, 0, sizeof(video_format_t) );
686     fmt.i_chroma = VLC_FOURCC('T','E','X','T');
687     fmt.i_aspect = 0;
688     fmt.i_width = fmt.i_height = 0;
689     fmt.i_x_offset = fmt.i_y_offset = 0;
690     p_spu->p_region = p_spu->pf_create_region( VLC_OBJECT(p_dec), &fmt );
691     if( p_spu->p_region == NULL )
692     {
693         msg_Err( p_dec, "cannot allocate SPU region" );
694         goto error;
695     }
696
697     /* Normal text subs, easy markup */
698     p_spu->i_flags = SUBPICTURE_ALIGN_BOTTOM | p_sys->i_align;
699     p_spu->i_x = p_sys->i_align ? 20 : 0;
700     p_spu->i_y = 10;
701
702     p_spu->p_region->psz_text = strdup(psz_text);
703     p_spu->i_start = p_block->i_pts;
704     p_spu->i_stop = p_block->i_pts + p_block->i_length;
705     p_spu->b_ephemer = (p_block->i_length == 0);
706     p_spu->b_absolute = VLC_FALSE;
707     dbg((p_dec, "%ld --> %ld\n", (long int) p_block->i_pts/100000, (long int)p_block->i_length/100000));
708
709     block_Release( p_block );
710     return p_spu;
711
712 error:
713     if ( p_spu != NULL )
714     {
715         p_dec->pf_spu_buffer_del( p_dec, p_spu );
716         p_spu = NULL;
717     }
718
719     block_Release( p_block );
720     return NULL;
721 }
722