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