telx.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:24k
源码类别:

midi

开发平台:

Unix_Linux

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