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