es: pass no cc reorder in es fmt
[vlc.git] / modules / codec / cc.c
blobe9d0b5e8108e97d4a36e63e4d064bbd86da89157
1 /*****************************************************************************
2 * cc.c : CC 608/708 subtitles decoder
3 *****************************************************************************
4 * Copyright © 2007-2010 Laurent Aimar, 2011 VLC authors and VideoLAN
6 * Authors: Laurent Aimar < fenrir # via.ecp.fr>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Lesser General Public License as published by
10 * the Free Software Foundation; either version 2.1 of the License, or
11 * (at your option) any later version.
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 Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 *****************************************************************************/
23 /*****************************************************************************
24 * Preamble
25 *****************************************************************************/
26 /* The EIA 608 decoder part has been initialy based on ccextractor (GPL)
27 * and rewritten */
29 /* TODO:
30 * Check parity
31 * 708 decoding
34 #ifdef HAVE_CONFIG_H
35 # include "config.h"
36 #endif
38 #include <assert.h>
40 #include <vlc_common.h>
41 #include <vlc_plugin.h>
42 #include <vlc_codec.h>
43 #include <vlc_charset.h>
45 #include "substext.h"
47 /*****************************************************************************
48 * Module descriptor.
49 *****************************************************************************/
50 static int Open ( vlc_object_t * );
51 static void Close( vlc_object_t * );
53 #define OPAQUE_TEXT N_("Opacity")
54 #define OPAQUE_LONGTEXT N_("Setting to true " \
55 "makes the text to be boxed and maybe easier to read." )
57 vlc_module_begin ()
58 set_shortname( N_("CC 608/708"))
59 set_description( N_("Closed Captions decoder") )
60 set_capability( "spu decoder", 50 )
61 set_category( CAT_INPUT )
62 set_subcategory( SUBCAT_INPUT_SCODEC )
63 set_callbacks( Open, Close )
65 add_bool( "cc-opaque", true,
66 OPAQUE_TEXT, OPAQUE_LONGTEXT, false )
67 vlc_module_end ()
69 /*****************************************************************************
70 * Local prototypes
71 *****************************************************************************/
72 typedef enum
74 EIA608_MODE_POPUP = 0,
75 EIA608_MODE_ROLLUP_2 = 1,
76 EIA608_MODE_ROLLUP_3 = 2,
77 EIA608_MODE_ROLLUP_4 = 3,
78 EIA608_MODE_PAINTON = 4,
79 EIA608_MODE_TEXT = 5
80 } eia608_mode_t;
82 typedef enum
84 EIA608_COLOR_WHITE = 0,
85 EIA608_COLOR_GREEN = 1,
86 EIA608_COLOR_BLUE = 2,
87 EIA608_COLOR_CYAN = 3,
88 EIA608_COLOR_RED = 4,
89 EIA608_COLOR_YELLOW = 5,
90 EIA608_COLOR_MAGENTA = 6,
91 EIA608_COLOR_USERDEFINED = 7
92 } eia608_color_t;
94 typedef enum
96 EIA608_FONT_REGULAR = 0x00,
97 EIA608_FONT_ITALICS = 0x01,
98 EIA608_FONT_UNDERLINE = 0x02,
99 EIA608_FONT_UNDERLINE_ITALICS = EIA608_FONT_UNDERLINE | EIA608_FONT_ITALICS
100 } eia608_font_t;
102 #define EIA608_SCREEN_ROWS 15
103 #define EIA608_SCREEN_COLUMNS 32
105 struct eia608_screen // A CC buffer
107 uint8_t characters[EIA608_SCREEN_ROWS][EIA608_SCREEN_COLUMNS+1];
108 eia608_color_t colors[EIA608_SCREEN_ROWS][EIA608_SCREEN_COLUMNS+1];
109 eia608_font_t fonts[EIA608_SCREEN_ROWS][EIA608_SCREEN_COLUMNS+1]; // Extra char at the end for a 0
110 int row_used[EIA608_SCREEN_ROWS]; // Any data in row?
112 typedef struct eia608_screen eia608_screen;
114 typedef enum
116 EIA608_STATUS_DEFAULT = 0x00,
117 EIA608_STATUS_CHANGED = 0x01, /* current screen has been altered */
118 EIA608_STATUS_CAPTION_ENDED = 0x02, /* screen flip */
119 EIA608_STATUS_CAPTION_CLEARED = 0x04, /* active screen erased */
120 EIA608_STATUS_DISPLAY = EIA608_STATUS_CAPTION_CLEARED | EIA608_STATUS_CAPTION_ENDED,
121 } eia608_status_t;
123 static const struct {
124 eia608_color_t i_color;
125 eia608_font_t i_font;
126 int i_column;
127 } pac2_attribs[]= {
128 { EIA608_COLOR_WHITE, EIA608_FONT_REGULAR, 0 },
129 { EIA608_COLOR_WHITE, EIA608_FONT_UNDERLINE, 0 },
130 { EIA608_COLOR_GREEN, EIA608_FONT_REGULAR, 0 },
131 { EIA608_COLOR_GREEN, EIA608_FONT_UNDERLINE, 0 },
132 { EIA608_COLOR_BLUE, EIA608_FONT_REGULAR, 0 },
133 { EIA608_COLOR_BLUE, EIA608_FONT_UNDERLINE, 0 },
134 { EIA608_COLOR_CYAN, EIA608_FONT_REGULAR, 0 },
135 { EIA608_COLOR_CYAN, EIA608_FONT_UNDERLINE, 0 },
136 { EIA608_COLOR_RED, EIA608_FONT_REGULAR, 0 },
137 { EIA608_COLOR_RED, EIA608_FONT_UNDERLINE, 0 },
138 { EIA608_COLOR_YELLOW, EIA608_FONT_REGULAR, 0 },
139 { EIA608_COLOR_YELLOW, EIA608_FONT_UNDERLINE, 0 },
140 { EIA608_COLOR_MAGENTA, EIA608_FONT_REGULAR, 0 },
141 { EIA608_COLOR_MAGENTA, EIA608_FONT_UNDERLINE, 0 },
142 { EIA608_COLOR_WHITE, EIA608_FONT_ITALICS, 0 },
143 { EIA608_COLOR_WHITE, EIA608_FONT_UNDERLINE_ITALICS, 0 },
145 { EIA608_COLOR_WHITE, EIA608_FONT_REGULAR, 0 },
146 { EIA608_COLOR_WHITE, EIA608_FONT_UNDERLINE, 0 },
147 { EIA608_COLOR_WHITE, EIA608_FONT_REGULAR, 4 },
148 { EIA608_COLOR_WHITE, EIA608_FONT_UNDERLINE, 4 },
149 { EIA608_COLOR_WHITE, EIA608_FONT_REGULAR, 8 },
150 { EIA608_COLOR_WHITE, EIA608_FONT_UNDERLINE, 8 },
151 { EIA608_COLOR_WHITE, EIA608_FONT_REGULAR, 12 },
152 { EIA608_COLOR_WHITE, EIA608_FONT_UNDERLINE, 12 },
153 { EIA608_COLOR_WHITE, EIA608_FONT_REGULAR, 16 },
154 { EIA608_COLOR_WHITE, EIA608_FONT_UNDERLINE, 16 },
155 { EIA608_COLOR_WHITE, EIA608_FONT_REGULAR, 20 },
156 { EIA608_COLOR_WHITE, EIA608_FONT_UNDERLINE, 20 },
157 { EIA608_COLOR_WHITE, EIA608_FONT_REGULAR, 24 },
158 { EIA608_COLOR_WHITE, EIA608_FONT_UNDERLINE, 24 },
159 { EIA608_COLOR_WHITE, EIA608_FONT_REGULAR, 28 },
160 { EIA608_COLOR_WHITE, EIA608_FONT_UNDERLINE, 28 } ,
163 #define EIA608_COLOR_DEFAULT EIA608_COLOR_WHITE
165 static const int rgi_eia608_colors[] = {
166 0xffffff, // white
167 0x00ff00, // green
168 0x0000ff, // blue
169 0x00ffff, // cyan
170 0xff0000, // red
171 0xffff00, // yellow
172 0xff00ff, // magenta
173 0xffffff, // user defined XXX we use white
176 typedef struct
178 /* Current channel (used to reject packet without channel information) */
179 int i_channel;
181 /* */
182 int i_screen; /* Displayed screen */
183 eia608_screen screen[2];
185 struct
187 int i_row;
188 int i_column;
189 } cursor;
191 /* */
192 eia608_mode_t mode;
193 eia608_color_t color;
194 eia608_font_t font;
195 int i_row_rollup;
197 /* Last command pair (used to reject duplicated command) */
198 struct
200 uint8_t d1;
201 uint8_t d2;
202 } last;
203 } eia608_t;
205 static void Eia608Init( eia608_t * );
206 static eia608_status_t Eia608Parse( eia608_t *h, int i_channel_selected, const uint8_t data[2] );
207 static void Eia608FillUpdaterRegions( subpicture_updater_sys_t *p_updater, eia608_t *h );
209 /* It will be enough up to 63 B frames, which is far too high for
210 * broadcast environment */
211 #define CC_MAX_REORDER_SIZE (64)
212 struct decoder_sys_t
214 int i_queue;
215 block_t *p_queue;
217 int i_field;
218 int i_channel;
220 int i_reorder_depth;
222 eia608_t eia608;
223 bool b_opaque;
226 static int Decode( decoder_t *, block_t * );
227 static void Flush( decoder_t * );
229 /*****************************************************************************
230 * Open: probe the decoder and return score
231 *****************************************************************************
232 * Tries to launch a decoder and return score so that the interface is able
233 * to chose.
234 *****************************************************************************/
235 static int Open( vlc_object_t *p_this )
237 decoder_t *p_dec = (decoder_t*)p_this;
238 decoder_sys_t *p_sys;
240 if( p_dec->fmt_in.i_codec != VLC_CODEC_CEA608 ||
241 p_dec->fmt_in.subs.cc.i_channel > 3 )
242 return VLC_EGENERIC;
244 /* 0 -> i_field = 0; i_channel = 1;
245 1 -> i_field = 0; i_channel = 2;
246 2 -> i_field = 1; i_channel = 1;
247 3 -> i_field = 1; i_channel = 2; */
249 const int i_field = p_dec->fmt_in.subs.cc.i_channel >> 1;
250 const int i_channel = 1 + (p_dec->fmt_in.subs.cc.i_channel & 1);
252 p_dec->pf_decode = Decode;
253 p_dec->pf_flush = Flush;
255 /* Allocate the memory needed to store the decoder's structure */
256 p_dec->p_sys = p_sys = calloc( 1, sizeof( *p_sys ) );
257 if( p_sys == NULL )
258 return VLC_ENOMEM;
260 /* init of p_sys */
261 p_sys->i_field = i_field;
262 p_sys->i_channel = i_channel;
264 Eia608Init( &p_sys->eia608 );
265 p_sys->b_opaque = var_InheritBool( p_dec, "cc-opaque" );
266 p_sys->i_reorder_depth = p_dec->fmt_in.subs.cc.i_reorder_depth;
268 p_dec->fmt_out.i_codec = VLC_CODEC_TEXT;
270 return VLC_SUCCESS;
273 /*****************************************************************************
274 * Flush:
275 *****************************************************************************/
276 static void Flush( decoder_t *p_dec )
278 decoder_sys_t *p_sys = p_dec->p_sys;
280 Eia608Init( &p_sys->eia608 );
282 block_ChainRelease( p_sys->p_queue );
283 p_sys->p_queue = NULL;
284 p_sys->i_queue = 0;
287 /****************************************************************************
288 * Decode: the whole thing
289 ****************************************************************************
291 ****************************************************************************/
292 static void Push( decoder_t *, block_t * );
293 static block_t *Pop( decoder_t *, bool );
294 static void Convert( decoder_t *, mtime_t, const uint8_t *, size_t );
296 static bool DoDecode( decoder_t *p_dec, bool b_drain )
298 block_t *p_block = Pop( p_dec, b_drain );
299 if( !p_block )
300 return false;
302 Convert( p_dec, p_block->i_pts, p_block->p_buffer, p_block->i_buffer );
303 block_Release( p_block );
305 return true;
308 static int Decode( decoder_t *p_dec, block_t *p_block )
310 decoder_sys_t *p_sys = p_dec->p_sys;
312 if( p_block )
314 /* Reset decoder if needed */
315 if( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY | BLOCK_FLAG_CORRUPTED) )
317 /* Drain */
318 for( ; DoDecode( p_dec, true ) ; );
319 Eia608Init( &p_sys->eia608 );
321 if( (p_block->i_flags & BLOCK_FLAG_CORRUPTED) || p_block->i_buffer < 1 )
323 block_Release( p_block );
324 return VLCDEC_SUCCESS;
328 /* XXX Cc captions data are OUT OF ORDER (because we receive them in the bitstream
329 * order (ie ordered by video picture dts) instead of the display order.
330 * We will simulate a simple IPB buffer scheme
331 * and reorder with pts.
332 * XXX it won't work with H264 which use non out of order B picture or MMCO */
333 if( p_sys->i_reorder_depth == 0 )
335 /* Wait for a P and output all *previous* picture by pts order (for
336 * hierarchical B frames) */
337 if( (p_block->i_flags & BLOCK_FLAG_TYPE_B) == 0 )
338 for( ; DoDecode( p_dec, true ); );
341 Push( p_dec, p_block );
344 const bool b_no_reorder = (p_dec->fmt_in.subs.cc.i_reorder_depth < 0);
345 for( ; DoDecode( p_dec, (p_block == NULL) || b_no_reorder ); );
347 return VLCDEC_SUCCESS;
350 /*****************************************************************************
351 * CloseDecoder: clean up the decoder
352 *****************************************************************************/
353 static void Close( vlc_object_t *p_this )
355 decoder_t *p_dec = (decoder_t *)p_this;
356 decoder_sys_t *p_sys = p_dec->p_sys;
358 block_ChainRelease( p_sys->p_queue );
359 free( p_sys );
362 /*****************************************************************************
364 *****************************************************************************/
365 static void Push( decoder_t *p_dec, block_t *p_block )
367 decoder_sys_t *p_sys = p_dec->p_sys;
369 if( p_sys->i_queue >= CC_MAX_REORDER_SIZE )
371 block_Release( Pop( p_dec, true ) );
372 msg_Warn( p_dec, "Trashing a CC entry" );
375 block_t **pp_block;
376 /* find insertion point */
377 for( pp_block = &p_sys->p_queue; *pp_block ; pp_block = &((*pp_block)->p_next) )
379 if( p_block->i_pts == VLC_TS_INVALID || (*pp_block)->i_pts == VLC_TS_INVALID )
380 continue;
381 if( p_block->i_pts < (*pp_block)->i_pts )
383 if( p_sys->i_reorder_depth > 0 &&
384 p_sys->i_queue < p_sys->i_reorder_depth &&
385 pp_block == &p_sys->p_queue )
387 msg_Info( p_dec, "Increasing reorder depth to %d", ++p_sys->i_reorder_depth );
389 break;
392 /* Insert, keeping a pts and/or fifo ordered list */
393 p_block->p_next = *pp_block ? *pp_block : NULL;
394 *pp_block = p_block;
395 p_sys->i_queue++;
398 static block_t *Pop( decoder_t *p_dec, bool b_forced )
400 decoder_sys_t *p_sys = p_dec->p_sys;
401 block_t *p_block;
403 if( p_sys->i_queue == 0 )
404 return NULL;
406 if( !b_forced && p_sys->i_queue < CC_MAX_REORDER_SIZE )
408 if( p_sys->i_queue < p_sys->i_reorder_depth || p_sys->i_reorder_depth == 0 )
409 return NULL;
412 /* dequeue head */
413 p_block = p_sys->p_queue;
414 p_sys->p_queue = p_block->p_next;
415 p_block->p_next = NULL;
416 p_sys->i_queue--;
418 return p_block;
421 static subpicture_t *Subtitle( decoder_t *p_dec, eia608_t *h, mtime_t i_pts )
423 //decoder_sys_t *p_sys = p_dec->p_sys;
424 subpicture_t *p_spu = NULL;
426 /* We cannot display a subpicture with no date */
427 if( i_pts <= VLC_TS_INVALID )
428 return NULL;
430 /* Create the subpicture unit */
431 p_spu = decoder_NewSubpictureText( p_dec );
432 if( !p_spu )
433 return NULL;
435 p_spu->i_start = i_pts;
436 p_spu->i_stop = i_pts + 10000000; /* 10s max */
437 p_spu->b_ephemer = true;
438 p_spu->b_absolute = false;
440 subpicture_updater_sys_t *p_spu_sys = p_spu->updater.p_sys;
442 /* The "leavetext" alignment is a special mode where the subpicture
443 region itself gets aligned, but the text inside it does not */
444 p_spu_sys->region.align = SUBPICTURE_ALIGN_TOP;
445 p_spu_sys->region.inner_align = SUBPICTURE_ALIGN_LEAVETEXT;
446 p_spu_sys->region.flags = UPDT_REGION_IGNORE_BACKGROUND | UPDT_REGION_USES_GRID_COORDINATES;
447 /* Set style defaults (will be added to segments if none set) */
448 p_spu_sys->p_default_style->i_style_flags |= STYLE_MONOSPACED;
449 if( p_dec->p_sys->b_opaque )
451 p_spu_sys->p_default_style->i_background_alpha = STYLE_ALPHA_OPAQUE;
452 p_spu_sys->p_default_style->i_features |= STYLE_HAS_BACKGROUND_ALPHA;
453 p_spu_sys->p_default_style->i_style_flags |= STYLE_BACKGROUND;
455 p_spu_sys->p_default_style->i_font_color = rgi_eia608_colors[EIA608_COLOR_DEFAULT];
456 /* FCC defined "safe area" for EIA-608 captions is 80% of the height of the display */
457 p_spu_sys->p_default_style->f_font_relsize = 100 * 8 / 10 / EIA608_SCREEN_ROWS;
458 p_spu_sys->p_default_style->i_features |= (STYLE_HAS_FONT_COLOR | STYLE_HAS_FLAGS);
460 Eia608FillUpdaterRegions( p_spu_sys, h );
462 return p_spu;
465 static void Convert( decoder_t *p_dec, mtime_t i_pts,
466 const uint8_t *p_buffer, size_t i_buffer )
468 decoder_sys_t *p_sys = p_dec->p_sys;
470 size_t i_ticks = 0;
471 while( i_buffer >= 3 )
473 /* Mask off the specific i_field bit, else some sequences can be lost. */
474 if ( (p_buffer[0] & 0x03) == p_sys->i_field &&
475 (p_buffer[0] & 0x04) /* Valid bit */ )
477 eia608_status_t i_status =
478 Eia608Parse( &p_sys->eia608, p_sys->i_channel, &p_buffer[1] );
480 /* a caption is ready or removed, process its screen */
482 * In case of rollup/painton with 1 packet/frame, we need to update on Changed status.
483 * Batch decoding might be incorrect if those in large number of commands (mp4, ...) then.
484 * see CEAv1.2zero.trp tests
486 if( i_status & (EIA608_STATUS_DISPLAY | EIA608_STATUS_CHANGED) )
488 subpicture_t *p_spu = Subtitle( p_dec, &p_sys->eia608, i_pts + i_ticks * CLOCK_FREQ / 30 );
489 if( p_spu )
490 decoder_QueueSub( p_dec, p_spu );
493 i_ticks++;
495 i_buffer -= 3;
496 p_buffer += 3;
501 /*****************************************************************************
503 *****************************************************************************/
504 static void Eia608Cursor( eia608_t *h, int dx )
506 h->cursor.i_column += dx;
507 if( h->cursor.i_column < 0 )
508 h->cursor.i_column = 0;
509 else if( h->cursor.i_column > EIA608_SCREEN_COLUMNS-1 )
510 h->cursor.i_column = EIA608_SCREEN_COLUMNS-1;
512 static void Eia608ClearScreenRowX( eia608_t *h, int i_screen, int i_row, int x )
514 eia608_screen *screen = &h->screen[i_screen];
516 if( x == 0 )
518 screen->row_used[i_row] = false;
520 else
522 screen->row_used[i_row] = false;
523 for( int i = 0; i < x; i++ )
525 if( screen->characters[i_row][i] != ' ' ||
526 screen->colors[i_row][i] != EIA608_COLOR_DEFAULT ||
527 screen->fonts[i_row][i] != EIA608_FONT_REGULAR )
529 screen->row_used[i_row] = true;
530 break;
535 for( ; x < EIA608_SCREEN_COLUMNS+1; x++ )
537 screen->characters[i_row][x] = x < EIA608_SCREEN_COLUMNS ? ' ' : '\0';
538 screen->colors[i_row][x] = EIA608_COLOR_DEFAULT;
539 screen->fonts[i_row][x] = EIA608_FONT_REGULAR;
543 static void Eia608ClearScreenRow( eia608_t *h, int i_screen, int i_row )
545 Eia608ClearScreenRowX( h, i_screen, i_row, 0 );
548 static void Eia608ClearScreen( eia608_t *h, int i_screen )
550 for( int i = 0; i < EIA608_SCREEN_ROWS; i++ )
551 Eia608ClearScreenRow( h, i_screen, i );
554 static int Eia608GetWritingScreenIndex( eia608_t *h )
556 switch( h->mode )
558 case EIA608_MODE_POPUP: // Non displayed screen
559 return 1 - h->i_screen;
561 case EIA608_MODE_ROLLUP_2: // Displayed screen
562 case EIA608_MODE_ROLLUP_3:
563 case EIA608_MODE_ROLLUP_4:
564 case EIA608_MODE_PAINTON:
565 return h->i_screen;
566 default:
567 /* It cannot happen, else it is a bug */
568 vlc_assert_unreachable();
569 return 0;
573 static void Eia608EraseScreen( eia608_t *h, bool b_displayed )
575 Eia608ClearScreen( h, b_displayed ? h->i_screen : (1-h->i_screen) );
578 static void Eia608Write( eia608_t *h, const uint8_t c )
580 const int i_row = h->cursor.i_row;
581 const int i_column = h->cursor.i_column;
582 eia608_screen *screen;
584 if( h->mode == EIA608_MODE_TEXT )
585 return;
587 screen = &h->screen[Eia608GetWritingScreenIndex( h )];
589 screen->characters[i_row][i_column] = c;
590 screen->colors[i_row][i_column] = h->color;
591 screen->fonts[i_row][i_column] = h->font;
592 screen->row_used[i_row] = true;
593 Eia608Cursor( h, 1 );
595 static void Eia608Erase( eia608_t *h )
597 const int i_row = h->cursor.i_row;
598 const int i_column = h->cursor.i_column - 1;
599 eia608_screen *screen;
601 if( h->mode == EIA608_MODE_TEXT )
602 return;
603 if( i_column < 0 )
604 return;
606 screen = &h->screen[Eia608GetWritingScreenIndex( h )];
608 /* FIXME do we need to reset row_used/colors/font ? */
609 screen->characters[i_row][i_column] = ' ';
610 Eia608Cursor( h, -1 );
612 static void Eia608EraseToEndOfRow( eia608_t *h )
614 if( h->mode == EIA608_MODE_TEXT )
615 return;
617 Eia608ClearScreenRowX( h, Eia608GetWritingScreenIndex( h ), h->cursor.i_row, h->cursor.i_column );
620 static void Eia608RollUp( eia608_t *h )
622 if( h->mode == EIA608_MODE_TEXT )
623 return;
625 const int i_screen = Eia608GetWritingScreenIndex( h );
626 eia608_screen *screen = &h->screen[i_screen];
628 int keep_lines;
630 /* Window size */
631 if( h->mode == EIA608_MODE_ROLLUP_2 )
632 keep_lines = 2;
633 else if( h->mode == EIA608_MODE_ROLLUP_3 )
634 keep_lines = 3;
635 else if( h->mode == EIA608_MODE_ROLLUP_4 )
636 keep_lines = 4;
637 else
638 return;
640 /* Reset the cursor */
641 h->cursor.i_column = 0;
643 /* Erase lines above our window */
644 for( int i = 0; i < h->cursor.i_row - keep_lines; i++ )
645 Eia608ClearScreenRow( h, i_screen, i );
647 /* Move up */
648 for( int i = 0; i < keep_lines-1; i++ )
650 const int i_row = h->cursor.i_row - keep_lines + i + 1;
651 if( i_row < 0 )
652 continue;
653 assert( i_row+1 < EIA608_SCREEN_ROWS );
654 memcpy( screen->characters[i_row], screen->characters[i_row+1], sizeof(*screen->characters) );
655 memcpy( screen->colors[i_row], screen->colors[i_row+1], sizeof(*screen->colors) );
656 memcpy( screen->fonts[i_row], screen->fonts[i_row+1], sizeof(*screen->fonts) );
657 screen->row_used[i_row] = screen->row_used[i_row+1];
659 /* Reset current row */
660 Eia608ClearScreenRow( h, i_screen, h->cursor.i_row );
662 static void Eia608ParseChannel( eia608_t *h, const uint8_t d[2] )
664 /* Check odd parity */
665 static const int p4[16] = {
666 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0
668 if( p4[d[0] & 0xf] == p4[d[0] >> 4] ||
669 p4[d[1] & 0xf] == p4[ d[1] >> 4] )
671 h->i_channel = -1;
672 return;
675 /* */
676 const int d1 = d[0] & 0x7f;
677 if( d1 >= 0x10 && d1 <= 0x1f )
678 h->i_channel = 1 + ((d1 & 0x08) != 0);
679 else if( d1 < 0x10 )
680 h->i_channel = 3;
682 static eia608_status_t Eia608ParseTextAttribute( eia608_t *h, uint8_t d2 )
684 const int i_index = d2 - 0x20;
685 assert( d2 >= 0x20 && d2 <= 0x2f );
687 h->color = pac2_attribs[i_index].i_color;
688 h->font = pac2_attribs[i_index].i_font;
689 Eia608Cursor( h, 1 );
691 return EIA608_STATUS_DEFAULT;
693 static eia608_status_t Eia608ParseSingle( eia608_t *h, const uint8_t dx )
695 assert( dx >= 0x20 );
696 Eia608Write( h, dx );
697 return EIA608_STATUS_CHANGED;
699 static eia608_status_t Eia608ParseDouble( eia608_t *h, uint8_t d2 )
701 assert( d2 >= 0x30 && d2 <= 0x3f );
702 Eia608Write( h, d2 + 0x50 ); /* We use charaters 0x80...0x8f */
703 return EIA608_STATUS_CHANGED;
705 static eia608_status_t Eia608ParseExtended( eia608_t *h, uint8_t d1, uint8_t d2 )
707 assert( d2 >= 0x20 && d2 <= 0x3f );
708 assert( d1 == 0x12 || d1 == 0x13 );
709 if( d1 == 0x12 )
710 d2 += 0x70; /* We use charaters 0x90-0xaf */
711 else
712 d2 += 0x90; /* We use charaters 0xb0-0xcf */
714 /* The extended characters replace the previous one with a more
715 * advanced one */
716 Eia608Cursor( h, -1 );
717 Eia608Write( h, d2 );
718 return EIA608_STATUS_CHANGED;
720 static eia608_status_t Eia608ParseCommand0x14( eia608_t *h, uint8_t d2 )
722 eia608_status_t i_status = EIA608_STATUS_DEFAULT;
724 switch( d2 )
726 case 0x20: /* Resume caption loading */
727 h->mode = EIA608_MODE_POPUP;
728 break;
729 case 0x21: /* Backspace */
730 Eia608Erase( h );
731 i_status = EIA608_STATUS_CHANGED;
732 break;
733 case 0x22: /* Reserved */
734 case 0x23:
735 break;
736 case 0x24: /* Delete to end of row */
737 Eia608EraseToEndOfRow( h );
738 break;
739 case 0x25: /* Rollup 2 */
740 case 0x26: /* Rollup 3 */
741 case 0x27: /* Rollup 4 */
742 if( h->mode == EIA608_MODE_POPUP || h->mode == EIA608_MODE_PAINTON )
744 Eia608EraseScreen( h, true );
745 Eia608EraseScreen( h, false );
746 i_status = EIA608_STATUS_CHANGED | EIA608_STATUS_CAPTION_CLEARED;
749 if( d2 == 0x25 )
750 h->mode = EIA608_MODE_ROLLUP_2;
751 else if( d2 == 0x26 )
752 h->mode = EIA608_MODE_ROLLUP_3;
753 else
754 h->mode = EIA608_MODE_ROLLUP_4;
756 h->cursor.i_column = 0;
757 h->cursor.i_row = h->i_row_rollup;
758 break;
759 case 0x28: /* Flash on */
760 /* TODO */
761 break;
762 case 0x29: /* Resume direct captionning */
763 h->mode = EIA608_MODE_PAINTON;
764 break;
765 case 0x2a: /* Text restart */
766 /* TODO */
767 break;
769 case 0x2b: /* Resume text display */
770 h->mode = EIA608_MODE_TEXT;
771 break;
773 case 0x2c: /* Erase displayed memory */
774 Eia608EraseScreen( h, true );
775 i_status = EIA608_STATUS_CHANGED | EIA608_STATUS_CAPTION_CLEARED;
776 break;
777 case 0x2d: /* Carriage return */
778 Eia608RollUp(h);
779 i_status = EIA608_STATUS_CHANGED;
780 break;
781 case 0x2e: /* Erase non displayed memory */
782 Eia608EraseScreen( h, false );
783 break;
784 case 0x2f: /* End of caption (flip screen if not paint on) */
785 if( h->mode != EIA608_MODE_PAINTON )
786 h->i_screen = 1 - h->i_screen;
787 h->mode = EIA608_MODE_POPUP;
788 h->cursor.i_column = 0;
789 h->cursor.i_row = 0;
790 h->color = EIA608_COLOR_DEFAULT;
791 h->font = EIA608_FONT_REGULAR;
792 i_status = EIA608_STATUS_CHANGED | EIA608_STATUS_CAPTION_ENDED;
793 break;
795 return i_status;
797 static bool Eia608ParseCommand0x17( eia608_t *h, uint8_t d2 )
799 switch( d2 )
801 case 0x21: /* Tab offset 1 */
802 Eia608Cursor( h, 1 );
803 break;
804 case 0x22: /* Tab offset 2 */
805 Eia608Cursor( h, 2 );
806 break;
807 case 0x23: /* Tab offset 3 */
808 Eia608Cursor( h, 3 );
809 break;
811 return false;
813 static bool Eia608ParsePac( eia608_t *h, uint8_t d1, uint8_t d2 )
815 static const int pi_row[] = {
816 11, -1, 1, 2, 3, 4, 12, 13, 14, 15, 5, 6, 7, 8, 9, 10
818 const int i_row_index = ( (d1<<1) & 0x0e) | ( (d2>>5) & 0x01 );
820 assert( d2 >= 0x40 && d2 <= 0x7f );
822 if( pi_row[i_row_index] <= 0 )
823 return false;
825 /* Row */
826 if( h->mode != EIA608_MODE_TEXT )
827 h->cursor.i_row = pi_row[i_row_index] - 1;
828 h->i_row_rollup = pi_row[i_row_index] - 1;
829 /* Column */
830 if( d2 >= 0x60 )
831 d2 -= 0x60;
832 else if( d2 >= 0x40 )
833 d2 -= 0x40;
834 h->cursor.i_column = pac2_attribs[d2].i_column;
835 h->color = pac2_attribs[d2].i_color;
836 h->font = pac2_attribs[d2].i_font;
838 return false;
841 static eia608_status_t Eia608ParseData( eia608_t *h, uint8_t d1, uint8_t d2 )
843 eia608_status_t i_status = EIA608_STATUS_DEFAULT;
845 if( d1 >= 0x18 && d1 <= 0x1f )
846 d1 -= 8;
848 #define ON( d2min, d2max, cmd ) do { if( d2 >= d2min && d2 <= d2max ) i_status = cmd; } while(0)
849 switch( d1 )
851 case 0x11:
852 ON( 0x20, 0x2f, Eia608ParseTextAttribute( h, d2 ) );
853 ON( 0x30, 0x3f, Eia608ParseDouble( h, d2 ) );
854 break;
855 case 0x12: case 0x13:
856 ON( 0x20, 0x3f, Eia608ParseExtended( h, d1, d2 ) );
857 break;
858 case 0x14: case 0x15:
859 ON( 0x20, 0x2f, Eia608ParseCommand0x14( h, d2 ) );
860 break;
861 case 0x17:
862 ON( 0x21, 0x23, Eia608ParseCommand0x17( h, d2 ) );
863 ON( 0x2e, 0x2f, Eia608ParseTextAttribute( h, d2 ) );
864 break;
866 if( d1 == 0x10 )
867 ON( 0x40, 0x5f, Eia608ParsePac( h, d1, d2 ) );
868 else if( d1 >= 0x11 && d1 <= 0x17 )
869 ON( 0x40, 0x7f, Eia608ParsePac( h, d1, d2 ) );
870 #undef ON
871 if( d1 >= 0x20 )
873 i_status = Eia608ParseSingle( h, d1 );
874 if( d2 >= 0x20 )
875 i_status |= Eia608ParseSingle( h, d2 );
878 /* Ignore changes occuring to doublebuffer */
879 if( h->mode == EIA608_MODE_POPUP && i_status == EIA608_STATUS_CHANGED )
880 i_status = EIA608_STATUS_DEFAULT;
882 return i_status;
885 static void Eia608TextUtf8( char *psz_utf8, uint8_t c ) // Returns number of bytes used
887 #define E1(c,u) { c, { u, '\0' } }
888 #define E2(c,u1,u2) { c, { u1, u2, '\0' } }
889 #define E3(c,u1,u2,u3) { c, { u1, u2, u3, '\0' } }
890 static const struct {
891 uint8_t c;
892 char utf8[3+1];
893 } c2utf8[] = {
894 // Regular line-21 character set, mostly ASCII except these exceptions
895 E2( 0x2a, 0xc3,0xa1), // lowercase a, acute accent
896 E2( 0x5c, 0xc3,0xa9), // lowercase e, acute accent
897 E2( 0x5e, 0xc3,0xad), // lowercase i, acute accent
898 E2( 0x5f, 0xc3,0xb3), // lowercase o, acute accent
899 E2( 0x60, 0xc3,0xba), // lowercase u, acute accent
900 E2( 0x7b, 0xc3,0xa7), // lowercase c with cedilla
901 E2( 0x7c, 0xc3,0xb7), // division symbol
902 E2( 0x7d, 0xc3,0x91), // uppercase N tilde
903 E2( 0x7e, 0xc3,0xb1), // lowercase n tilde
904 // THIS BLOCK INCLUDES THE 16 EXTENDED (TWO-BYTE) LINE 21 CHARACTERS
905 // THAT COME FROM HI BYTE=0x11 AND LOW BETWEEN 0x30 AND 0x3F
906 E2( 0x80, 0xc2,0xae), // Registered symbol (R)
907 E2( 0x81, 0xc2,0xb0), // degree sign
908 E2( 0x82, 0xc2,0xbd), // 1/2 symbol
909 E2( 0x83, 0xc2,0xbf), // Inverted (open) question mark
910 E3( 0x84, 0xe2,0x84,0xa2), // Trademark symbol (TM)
911 E2( 0x85, 0xc2,0xa2), // Cents symbol
912 E2( 0x86, 0xc2,0xa3), // Pounds sterling
913 E3( 0x87, 0xe2,0x99,0xaa), // Music note
914 E2( 0x88, 0xc3,0xa0), // lowercase a, grave accent
915 E2( 0x89, 0xc2,0xa0), // transparent space
916 E2( 0x8a, 0xc3,0xa8), // lowercase e, grave accent
917 E2( 0x8b, 0xc3,0xa2), // lowercase a, circumflex accent
918 E2( 0x8c, 0xc3,0xaa), // lowercase e, circumflex accent
919 E2( 0x8d, 0xc3,0xae), // lowercase i, circumflex accent
920 E2( 0x8e, 0xc3,0xb4), // lowercase o, circumflex accent
921 E2( 0x8f, 0xc3,0xbb), // lowercase u, circumflex accent
922 // THIS BLOCK INCLUDES THE 32 EXTENDED (TWO-BYTE) LINE 21 CHARACTERS
923 // THAT COME FROM HI BYTE=0x12 AND LOW BETWEEN 0x20 AND 0x3F
924 E2( 0x90, 0xc3,0x81), // capital letter A with acute
925 E2( 0x91, 0xc3,0x89), // capital letter E with acute
926 E2( 0x92, 0xc3,0x93), // capital letter O with acute
927 E2( 0x93, 0xc3,0x9a), // capital letter U with acute
928 E2( 0x94, 0xc3,0x9c), // capital letter U with diaresis
929 E2( 0x95, 0xc3,0xbc), // lowercase letter U with diaeresis
930 E1( 0x96, 0x27), // apostrophe
931 E2( 0x97, 0xc2,0xa1), // inverted exclamation mark
932 E1( 0x98, 0x2a), // asterisk
933 E1( 0x99, 0x27), // apostrophe (yes, duped). See CCADI source code.
934 E1( 0x9a, 0x2d), // hyphen-minus
935 E2( 0x9b, 0xc2,0xa9), // copyright sign
936 E3( 0x9c, 0xe2,0x84,0xa0), // Service mark
937 E1( 0x9d, 0x2e), // Full stop (.)
938 E3( 0x9e, 0xe2,0x80,0x9c), // Quotation mark
939 E3( 0x9f, 0xe2,0x80,0x9d), // Quotation mark
940 E2( 0xa0, 0xc3,0x80), // uppercase A, grave accent
941 E2( 0xa1, 0xc3,0x82), // uppercase A, circumflex
942 E2( 0xa2, 0xc3,0x87), // uppercase C with cedilla
943 E2( 0xa3, 0xc3,0x88), // uppercase E, grave accent
944 E2( 0xa4, 0xc3,0x8a), // uppercase E, circumflex
945 E2( 0xa5, 0xc3,0x8b), // capital letter E with diaresis
946 E2( 0xa6, 0xc3,0xab), // lowercase letter e with diaresis
947 E2( 0xa7, 0xc3,0x8e), // uppercase I, circumflex
948 E2( 0xa8, 0xc3,0x8f), // uppercase I, with diaresis
949 E2( 0xa9, 0xc3,0xaf), // lowercase i, with diaresis
950 E2( 0xaa, 0xc3,0x94), // uppercase O, circumflex
951 E2( 0xab, 0xc3,0x99), // uppercase U, grave accent
952 E2( 0xac, 0xc3,0xb9), // lowercase u, grave accent
953 E2( 0xad, 0xc3,0x9b), // uppercase U, circumflex
954 E2( 0xae, 0xc2,0xab), // LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
955 E2( 0xaf, 0xc2,0xbb), // RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
956 // THIS BLOCK INCLUDES THE 32 EXTENDED (TWO-BYTE) LINE 21 CHARACTERS
957 // THAT COME FROM HI BYTE=0x13 AND LOW BETWEEN 0x20 AND 0x3F
958 E2( 0xb0, 0xc3,0x83), // Uppercase A, tilde
959 E2( 0xb1, 0xc3,0xa3), // Lowercase a, tilde
960 E2( 0xb2, 0xc3,0x8d), // Uppercase I, acute accent
961 E2( 0xb3, 0xc3,0x8c), // Uppercase I, grave accent
962 E2( 0xb4, 0xc3,0xac), // Lowercase i, grave accent
963 E2( 0xb5, 0xc3,0x92), // Uppercase O, grave accent
964 E2( 0xb6, 0xc3,0xb2), // Lowercase o, grave accent
965 E2( 0xb7, 0xc3,0x95), // Uppercase O, tilde
966 E2( 0xb8, 0xc3,0xb5), // Lowercase o, tilde
967 E1( 0xb9, 0x7b), // Open curly brace
968 E1( 0xba, 0x7d), // Closing curly brace
969 E1( 0xbb, 0x5c), // Backslash
970 E1( 0xbc, 0x5e), // Caret
971 E1( 0xbd, 0x5f), // Underscore
972 E2( 0xbe, 0xc2,0xa6), // Pipe (broken bar)
973 E1( 0xbf, 0x7e), // Tilde (utf8 code unsure)
974 E2( 0xc0, 0xc3,0x84), // Uppercase A, umlaut
975 E2( 0xc1, 0xc3,0xa4), // Lowercase A, umlaut
976 E2( 0xc2, 0xc3,0x96), // Uppercase O, umlaut
977 E2( 0xc3, 0xc3,0xb6), // Lowercase o, umlaut
978 E2( 0xc4, 0xc3,0x9f), // Esszett (sharp S)
979 E2( 0xc5, 0xc2,0xa5), // Yen symbol
980 E2( 0xc6, 0xc2,0xa4), // Currency symbol
981 E1( 0xc7, 0x7c), // Vertical bar
982 E2( 0xc8, 0xc3,0x85), // Uppercase A, ring
983 E2( 0xc9, 0xc3,0xa5), // Lowercase A, ring
984 E2( 0xca, 0xc3,0x98), // Uppercase O, slash
985 E2( 0xcb, 0xc3,0xb8), // Lowercase o, slash
986 E3( 0xcc, 0xe2,0x8c,0x9c), // Upper left corner
987 E3( 0xcd, 0xe2,0x8c,0x9d), // Upper right corner
988 E3( 0xce, 0xe2,0x8c,0x9e), // Lower left corner
989 E3( 0xcf, 0xe2,0x8c,0x9f), // Lower right corner
991 E1(0,0)
993 #undef E3
994 #undef E2
995 #undef E1
997 for( size_t i = 0; i < ARRAY_SIZE(c2utf8) ; i++ )
998 if( c2utf8[i].c == c ) {
999 strcpy( psz_utf8, c2utf8[i].utf8 );
1000 return;
1003 psz_utf8[0] = c < 0x80 ? c : '?'; /* Normal : Unsupported */
1004 psz_utf8[1] = '\0';
1007 static void Eia608Strlcat( char *d, const char *s, int i_max )
1009 if( i_max > 1 )
1010 strncat( d, s, i_max-1 - strnlen(d, i_max-1));
1011 if( i_max > 0 )
1012 d[i_max-1] = '\0';
1015 #define CAT(t) Eia608Strlcat( psz_text, t, i_text_max )
1017 static text_segment_t * Eia608TextLine( struct eia608_screen *screen, int i_row )
1019 const uint8_t *p_char = screen->characters[i_row];
1020 const eia608_color_t *p_color = screen->colors[i_row];
1021 const eia608_font_t *p_font = screen->fonts[i_row];
1022 int i_start;
1023 int i_end;
1024 int x;
1025 eia608_color_t prev_color = EIA608_COLOR_DEFAULT;
1026 eia608_font_t prev_font = EIA608_FONT_REGULAR;
1028 char utf8[4];
1029 const unsigned i_text_max = 4 * EIA608_SCREEN_COLUMNS + 1;
1030 char psz_text[i_text_max + 1];
1031 psz_text[0] = '\0';
1033 /* Search the start */
1034 i_start = 0;
1036 /* Convert leading spaces to non-breaking so that they don't get
1037 stripped by the RenderHtml routine as regular whitespace */
1038 while( i_start < EIA608_SCREEN_COLUMNS && p_char[i_start] == ' ' ) {
1039 Eia608TextUtf8( utf8, 0x89 );
1040 CAT( utf8 );
1041 i_start++;
1044 /* Search the end */
1045 i_end = EIA608_SCREEN_COLUMNS-1;
1046 while( i_end > i_start && p_char[i_end] == ' ' )
1047 i_end--;
1049 /* */
1050 if( i_start > i_end ) /* Nothing to render */
1051 return NULL;
1053 text_segment_t *p_segment, *p_segments_head = p_segment = text_segment_New( NULL );
1054 if(!p_segment)
1055 return NULL;
1057 p_segment->style = text_style_Create( STYLE_NO_DEFAULTS );
1058 if(!p_segment->style)
1060 text_segment_Delete(p_segment);
1061 return NULL;
1063 /* Ensure we get a monospaced font (required for accurate positioning */
1064 p_segment->style->i_style_flags |= STYLE_MONOSPACED;
1066 for( x = i_start; x <= i_end; x++ )
1068 eia608_color_t color = p_color[x];
1069 eia608_font_t font = p_font[x];
1071 if(font != prev_font || color != prev_color)
1073 EnsureUTF8(psz_text);
1074 p_segment->psz_text = strdup(psz_text);
1075 psz_text[0] = '\0';
1076 p_segment->p_next = text_segment_New( NULL );
1077 p_segment = p_segment->p_next;
1078 if(!p_segment)
1079 return p_segments_head;
1081 p_segment->style = text_style_Create( STYLE_NO_DEFAULTS );
1082 if(!p_segment->style)
1084 text_segment_Delete(p_segment);
1085 return p_segments_head;
1087 p_segment->style->i_style_flags |= STYLE_MONOSPACED;
1089 /* start segment with new style */
1090 if(font & EIA608_FONT_ITALICS)
1092 p_segment->style->i_style_flags |= STYLE_ITALIC;
1093 p_segment->style->i_features |= STYLE_HAS_FLAGS;
1095 if(font & EIA608_FONT_UNDERLINE)
1097 p_segment->style->i_style_flags |= STYLE_UNDERLINE;
1098 p_segment->style->i_features |= STYLE_HAS_FLAGS;
1101 if(color != EIA608_COLOR_DEFAULT)
1103 p_segment->style->i_font_color = rgi_eia608_colors[color];
1104 p_segment->style->i_features |= STYLE_HAS_FONT_COLOR;
1108 Eia608TextUtf8( utf8, p_char[x] );
1109 CAT( utf8 );
1111 /* */
1112 prev_font = font;
1113 prev_color = color;
1116 #undef CAT
1118 if( p_segment )
1120 assert(!p_segment->psz_text); // shouldn't happen
1121 EnsureUTF8(psz_text);
1122 p_segment->psz_text = strdup(psz_text);
1125 return p_segments_head;
1128 static void Eia608FillUpdaterRegions( subpicture_updater_sys_t *p_updater, eia608_t *h )
1130 struct eia608_screen *screen = &h->screen[h->i_screen];
1131 subpicture_updater_sys_region_t *p_region = &p_updater->region;
1132 text_segment_t **pp_last = &p_region->p_segments;
1133 bool b_newregion = false;
1135 for( int i = 0; i < EIA608_SCREEN_ROWS; i++ )
1137 if( !screen->row_used[i] )
1138 continue;
1140 text_segment_t *p_segments = Eia608TextLine( screen, i );
1141 if( p_segments )
1143 if( b_newregion )
1145 subpicture_updater_sys_region_t *p_newregion;
1146 p_newregion = SubpictureUpdaterSysRegionNew();
1147 if( !p_newregion )
1149 text_segment_ChainDelete( p_segments );
1150 return;
1152 SubpictureUpdaterSysRegionAdd( p_region, p_newregion );
1153 p_region = p_newregion;
1154 pp_last = &p_region->p_segments;
1155 b_newregion = false;
1158 if( p_region->p_segments == NULL ) /* First segment in the [new] region */
1160 p_region->origin.y = i; /* set start line number */
1162 else /* Insert line break between region lines */
1164 *pp_last = text_segment_New( "\n" );
1165 if( *pp_last )
1166 pp_last = &((*pp_last)->p_next);
1169 *pp_last = p_segments;
1170 do { pp_last = &((*pp_last)->p_next); } while ( *pp_last != NULL );
1172 else
1174 b_newregion = !!p_region->p_segments;
1179 /* */
1180 static void Eia608Init( eia608_t *h )
1182 memset( h, 0, sizeof(*h) );
1184 /* */
1185 h->i_channel = -1;
1187 h->i_screen = 0;
1188 Eia608ClearScreen( h, 0 );
1189 Eia608ClearScreen( h, 1 );
1191 /* Cursor for writing text */
1192 h->cursor.i_column = 0;
1193 h->cursor.i_row = 0;
1195 h->last.d1 = 0x00;
1196 h->last.d2 = 0x00;
1197 h->mode = EIA608_MODE_POPUP;
1198 h->color = EIA608_COLOR_DEFAULT;
1199 h->font = EIA608_FONT_REGULAR;
1200 h->i_row_rollup = EIA608_SCREEN_ROWS-1;
1202 static eia608_status_t Eia608Parse( eia608_t *h, int i_channel_selected, const uint8_t data[2] )
1204 const uint8_t d1 = data[0] & 0x7f; /* Removed parity bit */
1205 const uint8_t d2 = data[1] & 0x7f;
1206 eia608_status_t i_screen_status = EIA608_STATUS_DEFAULT;
1208 if( d1 == 0 && d2 == 0 )
1209 return EIA608_STATUS_DEFAULT; /* Ignore padding (parity check are sometimes invalid on them) */
1211 Eia608ParseChannel( h, data );
1212 if( h->i_channel != i_channel_selected )
1213 return false;
1214 //fprintf( stderr, "CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC %x %x\n", data[0], data[1] );
1216 if( d1 >= 0x10 )
1218 if( d1 >= 0x20 ||
1219 d1 != h->last.d1 || d2 != h->last.d2 ) /* Command codes can be repeated */
1220 i_screen_status = Eia608ParseData( h, d1,d2 );
1222 h->last.d1 = d1;
1223 h->last.d2 = d2;
1225 else if( ( d1 >= 0x01 && d1 <= 0x0E ) || d1 == 0x0F )
1227 /* XDS block / End of XDS block */
1229 return i_screen_status;