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