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