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