]> git.sesse.net Git - vlc/blob - modules/codec/telx.c
add a shortname and delete unused variable
[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_shortname( "Teletext" );
90     set_capability( "decoder", 50 );
91     set_category( CAT_INPUT );
92     set_subcategory( SUBCAT_INPUT_SCODEC );
93     set_callbacks( Open, Close );
94
95     add_integer( "telx-page", 0, telx_conf_cb, PAGE_TEXT, PAGE_LONGTEXT,
96                  VLC_FALSE );
97     add_bool( "telx-ignore-subtitle-flag", 0, telx_conf_cb,
98               IGNORE_SUB_FLAG_TEXT, IGNORE_SUB_FLAG_LONGTEXT, VLC_TRUE );
99
100 vlc_module_end();
101
102 /****************************************************************************
103  * Local structures
104  ****************************************************************************/
105
106 struct decoder_sys_t
107 {
108   int         i_align;
109   vlc_bool_t  b_is_subtitle[9];
110   char        ppsz_lines[32][128];
111   char        psz_prev_text[512];
112   mtime_t     prev_pts;
113   int         i_page;
114   vlc_bool_t  b_erase[9];
115   uint16_t *  pi_active_national_set[9];
116 };
117
118 /****************************************************************************
119  * Local data
120  ****************************************************************************/
121
122 static int i_conf_wanted_page = 0; /* default 0 = all pages */
123 static vlc_bool_t b_ignore_sub_flag = 0;
124
125 /*
126  * My doc only mentions 13 national characters, but experiments show there 
127  * are more, in france for example I already found two more (0x9 and 0xb).
128  *
129  * Conversion is in this order :
130  *
131  * 0x23 0x24 0x40 0x5b 0x5c 0x5d 0x5e 0x5f 0x60 0x7b 0x7c 0x7d 0x7e
132  * (these are the standard ones)
133  * 0x08 0x09 0x0a 0x0b 0x0c 0x0d (apparently a control character) 0x0e 0x0f
134  */
135
136 static uint16_t ppi_national_subsets[][20] =
137 {
138   { 0x00a3, 0x0024, 0x0040, 0x00ab, 0x00bd, 0x00bb, 0x005e, 0x0023, 
139     0x002d, 0x00bc, 0x00a6, 0x00be, 0x00f7 }, /* english ,000 */
140
141   { 0x00e9, 0x00ef, 0x00e0, 0x00eb, 0x00ea, 0x00f9, 0x00ee, 0x0023,
142     0x00e8, 0x00e2, 0x00f4, 0x00fb, 0x00e7, 0, 0x00eb, 0, 0x00ef }, /* french  ,001 */
143
144   { 0x0023, 0x00a4, 0x00c9, 0x00c4, 0x00d6, 0x00c5, 0x00dc, 0x005f, 
145     0x00e9, 0x00e4, 0x00f6, 0x00e5, 0x00fc }, /* swedish,finnish,hungarian ,010 */
146
147   { 0x0023, 0x016f, 0x010d, 0x0165, 0x017e, 0x00fd, 0x00ed, 0x0159, 
148     0x00e9, 0x00e1, 0x0115, 0x00fa, 0x0161 }, /* czech,slovak  ,011 */
149
150   { 0x0023, 0x0024, 0x00a7, 0x00c4, 0x00d6, 0x00dc, 0x005e, 0x005f, 
151     0x00b0, 0x00e4, 0x00f6, 0x00fc, 0x00df }, /* german ,100 */
152
153   { 0x00e7, 0x0024, 0x00a1, 0x00e1, 0x00e9, 0x00ed, 0x00f3, 0x00fa, 
154     0x00bf, 0x00fc, 0x00f1, 0x00e8, 0x00e0 }, /* portuguese,spanish ,101 */
155
156   { 0x00a3, 0x0024, 0x00e9, 0x00b0, 0x00e7, 0x00bb, 0x005e, 0x0023, 
157     0x00f9, 0x00e0, 0x00f2, 0x00e8, 0x00ec }, /* italian  ,110 */
158
159   { 0x0023, 0x00a4, 0x0162, 0x00c2, 0x015e, 0x0102, 0x00ce, 0x0131, 
160     0x0163, 0x00e2, 0x015f, 0x0103, 0x00ee }, /* rumanian ,111 */
161
162   { 0x0023, 0x0024, 0x0160, 0x0117, 0x0119, 0x017d, 0x010d, 0x016b, 
163     0x0161, 0x0105, 0x0173, 0x017e, 0x012f }, /* lettish,lithuanian ,1000 */
164
165   { 0x0023, 0x0144, 0x0105, 0x005a, 0x015a, 0x0141, 0x0107, 0x00f3, 
166     0x0119, 0x017c, 0x015b, 0x0142, 0x017a }, /* polish,  1001 */
167
168   { 0x0023, 0x00cb, 0x010c, 0x0106, 0x017d, 0x0110, 0x0160, 0x00eb, 
169     0x010d, 0x0107, 0x017e, 0x0111, 0x0161 }, /* serbian,croatian,slovenian, 1010 */
170
171   { 0x0023, 0x00f5, 0x0160, 0x00c4, 0x00d6, 0x017e, 0x00dc, 0x00d5, 
172     0x0161, 0x00e4, 0x00f6, 0x017e, 0x00fc }, /* estonian  ,1011 */
173
174   { 0x0054, 0x011f, 0x0130, 0x015e, 0x00d6, 0x00c7, 0x00dc, 0x011e, 
175     0x0131, 0x015f, 0x00f6, 0x00e7, 0x00fc }, /* turkish  ,1100 */
176 };
177
178
179 /*****************************************************************************
180  * Open: probe the decoder and return score
181  *****************************************************************************
182  * Tries to launch a decoder and return score so that the interface is able
183  * to chose.
184  *****************************************************************************/
185 static int Open( vlc_object_t *p_this )
186 {
187     decoder_t     *p_dec = (decoder_t *) p_this;
188     decoder_sys_t *p_sys = NULL;
189     vlc_value_t    val;
190     int            i;
191
192     if( p_dec->fmt_in.i_codec != VLC_FOURCC('t','e','l','x'))
193     {
194         return VLC_EGENERIC;
195     }
196
197     p_dec->pf_decode_sub = Decode;
198     p_sys = p_dec->p_sys = malloc( sizeof(decoder_sys_t) );
199     if( p_sys == NULL )
200     {
201         msg_Err( p_dec, "out of memory" );
202         return VLC_ENOMEM;
203     }
204
205     memset( p_sys, 0, sizeof(decoder_sys_t) );
206
207     p_sys->i_align = 0;
208     for ( i = 0; i < 9; i++ )
209         p_sys->pi_active_national_set[i] = ppi_national_subsets[1];
210
211     var_Create( p_dec, "telx-page", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
212     var_Get( p_dec, "telx-page", &val );
213     i_conf_wanted_page = val.i_int;
214
215     var_Create( p_dec, "telx-ignore-subtitle-flag",
216                 VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
217     var_Get( p_dec, "telx-ignore-subtitle-flag", &val );
218     b_ignore_sub_flag = val.b_bool;
219
220     return VLC_SUCCESS;
221
222 /*  error: */
223 /*     if (p_sys) { */
224 /*       free(p_sys); */
225 /*       p_sys = NULL; */
226 /*     } */
227 /*     return VLC_EGENERIC; */
228 }
229
230 /*****************************************************************************
231  * Config callback
232  *****************************************************************************/
233 static int telx_conf_cb ( vlc_object_t * obj,      /* variable's object */
234                           char const * name,       /* variable name */
235                           vlc_value_t oldv,        /* old value */
236                           vlc_value_t newv,        /* new value */
237                           void * data)             /* callback data */
238 {
239     if ( !strcmp(name, "telx-page") )
240     {
241         i_conf_wanted_page = newv.i_int;
242         dbg((obj, "display teletext page changed to %d\n", i_conf_wanted_page));
243     }
244     else if ( !strcmp(name, "telx-ignore-subtitle-flag") )
245     {
246         b_ignore_sub_flag = newv.b_bool;
247         dbg((obj, "ignore sub flag changed to %d\n", (int) b_ignore_sub_flag));
248     }
249
250     return 0;
251 }
252
253
254 /*****************************************************************************
255  * Close:
256  *****************************************************************************/
257 static void Close( vlc_object_t *p_this )
258 {
259     decoder_t     *p_dec = (decoder_t*) p_this;
260     decoder_sys_t *p_sys = p_dec->p_sys;
261
262     free( p_sys );
263 }
264
265 /**************************
266  * change bits endianness *
267  **************************/
268 static uint8_t bytereverse( int n )
269 {
270     n = (((n >> 1) & 0x55) | ((n << 1) & 0xaa));
271     n = (((n >> 2) & 0x33) | ((n << 2) & 0xcc));
272     n = (((n >> 4) & 0x0f) | ((n << 4) & 0xf0));
273     return n;
274 }
275
276 static int hamming_8_4( int a )
277 {
278     switch (a) {
279     case 0xA8: 
280         return 0;
281     case 0x0B: 
282         return 1;
283     case 0x26: 
284         return 2;
285     case 0x85: 
286         return 3;
287     case 0x92: 
288         return 4;
289     case 0x31: 
290         return 5;
291     case 0x1C: 
292         return 6;
293     case 0xBF: 
294         return 7;
295     case 0x40: 
296         return 8;
297     case 0xE3: 
298         return 9;
299     case 0xCE: 
300         return 10;
301     case 0x6D: 
302         return 11;
303     case 0x7A: 
304         return 12;
305     case 0xD9: 
306         return 13;
307     case 0xF4: 
308         return 14;
309     case 0x57: 
310         return 15;
311     default: 
312         return -1;     // decoding error , not yet corrected
313     }
314 }
315
316 // utc-2 --> utf-8
317 // this is not a general function, but it's enough for what we do here
318 static void to_utf8( char * res, uint16_t ch )
319 {
320     if( ch >= 0x80 )
321     {
322         if( ch >= 0x800 )
323         {
324             res[0] = (ch >> 12) | 0xE0;
325             res[1] = ((ch >> 6) & 0x3F) | 0x80;
326             res[2] = (ch & 0x3F) | 0x80;
327             res[3] = 0;
328         }
329         else
330         {
331             res[0] = (ch >> 6) | 0xC0;
332             res[1] = (ch & 0x3F) | 0x80;
333             res[2] = 0;
334         }
335     }
336     else
337     {
338         res[0] = ch;
339         res[1] = 0;
340     }
341 }
342
343 static void decode_string( char * res, int res_len, 
344                            decoder_sys_t *p_sys, int magazine, 
345                            uint8_t * packet, int len )
346 {
347     char utf8[7];
348     char * pt = res;
349     int i;
350
351     for ( i = 0; i < len; i++ )
352     {
353         int in = bytereverse( packet[i] ) & 0x7f;
354         uint16_t out = 32;
355         size_t l;
356
357         switch ( in )
358         {
359         /* special national characters */
360         case 0x23:
361             out = p_sys->pi_active_national_set[magazine][0]; 
362             break; 
363         case 0x24:
364             out = p_sys->pi_active_national_set[magazine][1]; 
365             break; 
366         case 0x40:
367             out = p_sys->pi_active_national_set[magazine][2]; 
368             break; 
369         case 0x5b:
370             out = p_sys->pi_active_national_set[magazine][3]; 
371             break; 
372         case 0x5c:
373             out = p_sys->pi_active_national_set[magazine][4]; 
374             break; 
375         case 0x5d:
376             out = p_sys->pi_active_national_set[magazine][5]; 
377             break; 
378         case 0x5e:
379             out = p_sys->pi_active_national_set[magazine][6]; 
380             break; 
381         case 0x5f:
382             out = p_sys->pi_active_national_set[magazine][7]; 
383             break; 
384         case 0x60:
385             out = p_sys->pi_active_national_set[magazine][8]; 
386             break; 
387         case 0x7b:
388             out = p_sys->pi_active_national_set[magazine][9]; 
389             break; 
390         case 0x7c:
391             out = p_sys->pi_active_national_set[magazine][10]; 
392             break; 
393         case 0x7d:
394             out = p_sys->pi_active_national_set[magazine][11]; 
395             break; 
396         case 0x7e:
397             out = p_sys->pi_active_national_set[magazine][12]; 
398             break; 
399
400         /* some special control characters (empirical) */
401         case 0x0d:
402             /* apparently this starts a sequence that ends with 0xb 0xb */
403             while ( i + 1 < len && (bytereverse( packet[i+1] ) & 0x7f) != 0x0b )
404                 i++;
405             i += 2;
406             break;
407             /* goto skip; */
408
409         default:
410             /* non documented national range 0x08 - 0x0f */
411             if ( in >= 0x08 && in <= 0x0f )
412             {
413                 out = p_sys->pi_active_national_set[magazine][13 + in - 8];
414                 break;
415             }
416
417             /* normal ascii */
418             if ( in > 32 && in < 0x7f )
419                 out = in;
420         }
421
422         /* handle undefined national characters */
423         if ( out == 0 )
424             out = 32;
425
426         /* convert to utf-8 */
427         to_utf8( utf8, out );
428         l = strlen( utf8 );
429         if ( pt + l < res + res_len - 1 )
430         {
431             strcpy(pt, utf8);
432             pt += l;
433         }
434
435         /* skip: ; */
436     }
437     /* end: */
438     *pt++ = 0;
439 }  
440
441 /*****************************************************************************
442  * Decode:
443  *****************************************************************************/
444 static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
445 {
446     decoder_sys_t *p_sys = p_dec->p_sys;
447     block_t       *p_block;
448     subpicture_t  *p_spu = NULL;
449     video_format_t fmt;
450     /* int erase = 0; */
451     int len, offset;
452     int i_wanted_magazine = i_conf_wanted_page / 100;
453     int i_wanted_page = 0x10 * ((i_conf_wanted_page % 100) / 10)
454                          | (i_conf_wanted_page % 10);
455     vlc_bool_t b_update = VLC_FALSE;
456     char psz_text[512], *pt = psz_text;
457     char psz_line[256];
458     int i, total;
459
460     if( pp_block == NULL || *pp_block == NULL ) return NULL;
461     p_block = *pp_block;
462     *pp_block = NULL;
463
464     len = p_block->i_buffer;
465     for ( offset = 1; offset + 46 <= len; offset += 46 )
466     {
467         uint8_t * packet = (uint8_t *) p_block->p_buffer+offset;
468       
469         /* dbg((p_dec, "header %02x %02x %02x\n", packet[0], packet[1], packet[2])); */
470 /*       if (packet[1] != 0x2C) { */
471 /*         printf("wrong header\n"); */
472 /*         //goto error; */
473 /*         continue; */
474 /*       } */
475
476         int mpag = (hamming_8_4( packet[4] ) << 4) | hamming_8_4( packet[5] );
477         int row, magazine;
478         if ( mpag < 0 )
479         {
480             /* decode error */
481             dbg((p_dec, "mpag hamming error\n"));
482             continue;
483         }
484
485         row = 0xFF & bytereverse(mpag);
486         magazine = (7 & row) == 0 ? 8 : (7 & row);
487         row >>= 3;
488
489         if ( i_conf_wanted_page && magazine != i_wanted_magazine ) continue;
490
491         if ( row == 0 )
492         {
493             /* row 0 : flags and header line */
494             int flag = 0;
495             int a;
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