10l: comparison of char* ptrs with string literals
[mplayer.git] / libmpdemux / demux_ty_osd.c
blobec8a8340bb66c25548cae16bc120c908c6b4491f
1 // Most of this was written by mbm@linux.com and released on the GPL2 License.
2 //
3 // Modifications and SEVERE cleanup of the code was done by
4 // Christopher Wingert
5 // Copyright 2003
6 //
7 // Released under GPL2 License.
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <unistd.h>
12 #include <time.h>
13 #include <stdarg.h>
14 #include <string.h>
16 #include "config.h"
17 #include "mp_msg.h"
18 #include "help_mp.h"
20 //#include "stream.h"
21 //#include "demuxer.h"
22 //#include "parse_es.h"
23 //#include "stheader.h"
24 //#include "mp3_hdr.h"
25 //#include "subreader.h"
26 #include "sub_cc.h"
27 #include "libvo/sub.h"
29 //#include "dvdauth.h"
31 extern int sub_justify;
33 #define TY_TEXT_MODE ( 1 << 0 )
34 #define TY_OSD_MODE ( 1 << 1 )
36 static int TY_OSD_flags = TY_TEXT_MODE | TY_OSD_MODE;
37 static int TY_OSD_debug = 0;
39 // ===========================================================================
40 // Closed Caption Decoding and OSD Presentation
41 // ===========================================================================
42 #define TY_CCNONE ( -3 )
43 #define TY_CCTEXTMODE ( -2 )
44 #define TY_CCPOPUPNB ( -1 )
45 #define TY_CCPOPUP ( 0 )
46 #define TY_CCPAINTON ( 1 )
48 #define TY_CC_MAX_X ( 45 )
50 static int TY_CC_CUR_X;
51 static int TY_CC_CUR_Y;
52 static int TY_CC_stat = TY_CCNONE;
53 static char TY_CC_buf[ 255 ];
54 static char *TY_CC_ptr = TY_CC_buf;
55 static unsigned TY_CC_lastcap = 0;
56 static int TY_CC_TextItalic;
57 static int TY_CC_Y_Offset;
59 static subtitle ty_OSD1;
60 static subtitle ty_OSD2;
61 static subtitle *ty_pOSD1;
62 static subtitle *ty_pOSD2;
63 static int tyOSDInited = 0;
64 static int tyOSDUpdate = 0;
66 static void ty_DrawOSD(void)
68 // printf( "Calling ty_DrawOSD()\n" );
69 tyOSDUpdate = 1;
72 void ty_ClearOSD( int start )
74 int index;
75 // printf( "Calling ty_ClearOSD()\n" );
76 for ( index = start ; index < SUB_MAX_TEXT ; index++ )
78 memset( ty_OSD1.text[ index ], ' ', TY_CC_MAX_X - 1 );
79 ty_OSD1.text[ index ][ TY_CC_MAX_X - 1 ] = 0;
80 memset( ty_OSD2.text[ index ], ' ', TY_CC_MAX_X - 1 );
81 ty_OSD2.text[ index ][ TY_CC_MAX_X - 1 ] = 0;
85 static void ty_DrawChar( int *x, int *y, char disChar, int fgColor, int bgColor )
87 int cx;
88 int cy;
90 cx = *x;
91 cy = *y;
93 if ( *x >= ( TY_CC_MAX_X - 1 ) )
95 cx = 0;
97 if ( ( *y + TY_CC_Y_Offset ) > SUB_MAX_TEXT )
99 cy = SUB_MAX_TEXT - TY_CC_Y_Offset - 1;
102 // printf( "Calling ty_DrawChar() x:%d y:%d %c fg:%d bg:%d\n",
103 // cx, cy, disChar, fgColor, bgColor );
105 ty_OSD1.text[ TY_CC_Y_Offset + cy ][ cx ] = disChar;
106 memset( &( ty_OSD1.text[ TY_CC_Y_Offset + cy ][ cx + 1 ] ), ' ',
107 TY_CC_MAX_X - cx - 2 );
108 ( *x )++;
111 static void ty_RollupBuf( int dest, int source, int numLines )
113 int index;
115 // printf( "Calling ty_RollupBuf() dest:%d source %d, numLines %d\n",
116 // dest, source, numLines );
118 if ( ( source + TY_CC_Y_Offset + numLines ) > SUB_MAX_TEXT )
120 ty_ClearOSD( 1 );
121 return;
124 if ( ( source + TY_CC_Y_Offset + numLines ) < 0 )
126 ty_ClearOSD( 1 );
127 return;
130 if ( numLines > SUB_MAX_TEXT )
132 ty_ClearOSD( 1 );
133 return;
136 for ( index = 0 ; index < numLines ; index++ )
138 strcpy( ty_OSD1.text[ TY_CC_Y_Offset + dest ],
139 ty_OSD1.text[ TY_CC_Y_Offset + source ] );
140 dest++;
141 source++;
143 memset( ty_OSD1.text[ TY_CC_Y_Offset + source - 1 ], ' ', TY_CC_MAX_X - 1 );
144 ty_OSD1.text[ TY_CC_Y_Offset + source - 1 ][ TY_CC_MAX_X - 1 ] = 0;
147 static void ty_drawchar( char c )
149 if ( c < 2 ) return;
151 if ( TY_OSD_flags & TY_OSD_MODE && TY_CC_stat != TY_CCNONE &&
152 TY_CC_CUR_Y != -1 )
153 ty_DrawChar( &TY_CC_CUR_X, &TY_CC_CUR_Y, c, 4, 13 );
155 if ( TY_CC_ptr - TY_CC_buf > sizeof( TY_CC_buf ) - 1 )
156 { // buffer overflow
157 TY_CC_ptr = TY_CC_buf;
158 memset( TY_CC_buf, 0, sizeof( TY_CC_buf ) );
160 *( TY_CC_ptr++ ) = ( c == 14 ) ? '/' : c; // swap a '/' for musical note
163 static void ty_draw(void)
165 if ( TY_CC_ptr != TY_CC_buf && TY_OSD_flags & TY_TEXT_MODE )
167 if ( *( TY_CC_ptr - 1 ) == '\n' ) *( TY_CC_ptr - 1 ) = 0;
169 mp_msg( MSGT_DEMUX, MSGL_V, "CC: %s\n", TY_CC_buf );
171 TY_CC_lastcap = time( NULL );
173 TY_CC_ptr = TY_CC_buf;
174 memset( TY_CC_buf, 0, sizeof( TY_CC_buf) );
176 if ( TY_OSD_flags & TY_OSD_MODE ) ty_DrawOSD();
177 if ( TY_CC_TextItalic ) TY_CC_TextItalic = 0;
181 static int CC_last = 0;
182 static char CC_mode = 0;
183 static int CC_row[] =
185 11, -1, 1, 2, 3, 4, 12, 13, 14, 15, 5, 6, 7, 8, 9, 10
188 // char specialchar[] = { '®', '°', '½', '¿', '*', '¢', '£', 14, 'à', ' ', 'è', 'â', 'ê', 'î', 'ô', 'û' };
190 static int ty_CCdecode( char b1, char b2 )
192 int x;
193 int data = ( b2 << 8 ) + b1;
195 if ( b1 & 0x60 ) // text
197 if ( !TY_OSD_debug && TY_CC_stat == TY_CCNONE ) return 0;
198 if ( TY_OSD_debug > 3 )
200 mp_msg( MSGT_DEMUX, MSGL_DBG3, "%c %c", b1, b2 );
202 ty_drawchar( b1 );
203 ty_drawchar( b2 );
205 if ( TY_CC_stat > 0 && TY_OSD_flags & TY_OSD_MODE ) ty_DrawOSD();
207 else if ( ( b1 & 0x10 ) && ( b2 > 0x1F ) && ( data != CC_last ) )
209 #define CURRENT ( ( b1 & 0x08 ) >> 3 )
211 if ( CC_mode != CURRENT && TY_CC_stat != TY_CCNONE )
213 if ( TY_OSD_debug && TY_CC_ptr != TY_CC_buf ) ty_draw();
214 TY_CC_stat = TY_CCNONE;
215 return 0;
218 if ( TY_CC_stat == TY_CCNONE || TY_CC_CUR_Y == -1 )
220 if ( TY_CC_ptr != TY_CC_buf )
222 if ( TY_OSD_debug )
223 mp_msg( MSGT_DEMUX, MSGL_DBG3, "(TY_OSD_debug) %s\n",
224 TY_CC_buf );
225 TY_CC_ptr = TY_CC_buf;
226 memset(TY_CC_buf, 0, sizeof(TY_CC_buf));
229 if ( CC_mode != CURRENT ) return 0;
232 // preamble address code (row & indent)
233 if ( b2 & 0x40 )
235 TY_CC_CUR_Y = CC_row[ ( ( b1 << 1 ) & 14 ) | ( ( b2 >> 5 ) & 1 ) ];
237 // Offset into MPlayer's Buffer
238 if ( ( TY_CC_CUR_Y >= 1 ) && ( TY_CC_CUR_Y <= 4 ) )
240 TY_CC_Y_Offset = SUB_MAX_TEXT - 5 - 1;
242 if ( ( TY_CC_CUR_Y >= 5 ) && ( TY_CC_CUR_Y <= 10 ) )
244 TY_CC_Y_Offset = SUB_MAX_TEXT - 5 - 5;
246 if ( ( TY_CC_CUR_Y >= 12 ) && ( TY_CC_CUR_Y <= 15 ) )
248 TY_CC_Y_Offset = SUB_MAX_TEXT - 5 - 12;
251 if ( TY_OSD_debug > 3 )
252 mp_msg( MSGT_DEMUX, MSGL_DBG3, "<< preamble %d >>\n", TY_CC_CUR_Y );
254 // we still have something in the text buffer
255 if (TY_CC_ptr != TY_CC_buf)
257 *(TY_CC_ptr++) = '\n';
258 if ( TY_CC_TextItalic )
260 TY_CC_TextItalic = 0;
264 TY_CC_CUR_X = 1;
265 // row contains indent flag
266 if ( b2 & 0x10 )
268 for ( x = 0 ; x < ( ( b2 & 0x0F ) << 1 ) ; x++ )
270 TY_CC_CUR_X++;
271 *(TY_CC_ptr++) = ' ';
275 else
276 // !(b2 & 0x40)
278 if ( TY_OSD_debug > 3 )
279 mp_msg( MSGT_DEMUX, MSGL_DBG3, "<< %02x >>\n", b1 & 0x7 );
280 switch (b1 & 0x07)
282 case 0x00: // attribute
284 if ( TY_OSD_debug > 1 )
285 mp_msg( MSGT_DEMUX, MSGL_DBG3, "<<A: %d>>\n", b2 );
286 break;
288 case 0x01: // midrow or char
290 switch (b2 & 0x70)
292 case 0x20: // midrow attribute change
294 switch (b2 & 0x0e)
296 case 0x00: // italics off
298 TY_CC_TextItalic = 0;
299 *(TY_CC_ptr++) = ' ';
300 break;
302 case 0x0e: // italics on
304 ty_drawchar(' ');
305 TY_CC_TextItalic = 1;
306 break;
308 default:
310 if ( TY_OSD_debug > 1 )
311 mp_msg( MSGT_DEMUX, MSGL_DBG3, "<<D: %d>>\n",
312 b2 & 0x0e );
315 if ( b2 & 0x01 )
317 // TextUnderline = 1;
319 else
321 // TextUnderline = 0;
323 break;
325 case 0x30: // special character..
327 // transparent space
328 if ( ( b2 & 0x0f ) == 9 )
330 TY_CC_CUR_X++;
331 *(TY_CC_ptr++) = ' ';
333 else
335 // ty_drawchar(specialchar[ b2 & 0x0f ] );
336 ty_drawchar( ' ' );
338 break;
341 break;
344 case 0x04: // misc
345 case 0x05: // misc + F
347 if ( TY_OSD_debug > 3 )
348 mp_msg( MSGT_DEMUX, MSGL_DBG3, "<< misc %02x >>\n", b2 );
349 switch ( b2 )
351 case 0x20: // resume caption (new caption)
353 if ( TY_OSD_flags & TY_OSD_MODE &&
354 TY_CC_stat != TY_CCPOPUP )
355 ty_ClearOSD( 1 );
356 TY_CC_stat = TY_CCPOPUP;
357 break;
360 case 0x21: // backspace
362 TY_CC_CUR_X--;
363 break;
366 case 0x25 ... 0x27: // 2-4 row captions
368 if ( TY_CC_stat == TY_CCPOPUP ) ty_ClearOSD( 1 );
369 TY_CC_stat = b2 - 0x23;
370 if ( TY_CC_CUR_Y < TY_CC_stat ) TY_CC_CUR_Y = TY_CC_stat;
371 break;
374 case 0x29: // resume direct caption
376 TY_CC_stat = TY_CCPAINTON;
377 break;
380 case 0x2A: // text restart
382 ty_draw();
383 /* FALL */
386 case 0x2B: // resume text display
388 TY_CC_stat = TY_CCTEXTMODE;
389 break;
392 case 0x2C: // erase displayed memory
394 TY_CC_lastcap = 0;
395 if ( TY_OSD_flags & TY_OSD_MODE )
397 if ( TY_CC_stat > TY_CCPOPUP || TY_CC_ptr == TY_CC_buf )
399 ty_ClearOSD( 1 );
400 ty_draw();
402 else
404 ty_ClearOSD( 1 );
406 // CRW -
407 // new buffer
408 // Used to be a buffer swap here, dunno why
411 break;
414 case 0x2D: // carriage return
416 ty_draw();
417 TY_CC_CUR_X = 1;
418 if ( TY_OSD_flags & TY_OSD_MODE )
420 if ( TY_CC_stat > TY_CCPAINTON )
421 ty_RollupBuf
423 TY_CC_CUR_Y - TY_CC_stat + 1 ,
424 TY_CC_CUR_Y - TY_CC_stat + 2,
425 TY_CC_stat - 1
427 else
428 TY_CC_CUR_Y++;
430 break;
433 case 0x2F: // end caption + swap memory
435 ty_draw();
436 /* FALL THROUGH TO 0x2E */
439 case 0x2E: // erase non-displayed memory
441 if ( TY_OSD_debug && TY_CC_ptr != TY_CC_buf )
442 mp_msg( MSGT_DEMUX, MSGL_DBG3, "(TY_OSD_debug) %s\n",
443 TY_CC_buf );
444 if ( TY_OSD_flags & TY_OSD_MODE ) ty_ClearOSD( 1 );
446 TY_CC_CUR_X = 1;
447 TY_CC_CUR_Y = -1;
449 TY_CC_ptr = TY_CC_buf;
450 memset( TY_CC_buf, 0, sizeof( TY_CC_buf ) );
453 break;
455 case 0x07: // misc (TAB)
457 for ( x = 0 ; x < ( b2 - 0x20 ) ; x++ )
458 TY_CC_CUR_X++;
459 break;
464 CC_last = data;
465 return 0;
468 // ===========================================================================
469 // Extended Data Service Decoding and OSD Presentation
470 // ===========================================================================
471 #define XDS_BUFFER_LENGTH ( 16 )
472 #define XDS_DISPLAY_FRAMES ( 120 )
473 static char *ty_XDS_Display[ XDS_BUFFER_LENGTH ];
474 static int ty_XDSAddLine = -1;
475 static int ty_XDSDisplayCount = -1;
478 static void ty_AddXDSToDisplay( const char *format, ... )
480 char line[ 80 ];
481 int index;
482 va_list ap;
484 if ( ty_XDSAddLine == -1 )
486 for( index = 0 ; index < XDS_BUFFER_LENGTH ; index++ )
488 ty_XDS_Display[ index ] = 0;
490 ty_XDSAddLine = 0;
493 va_start( ap, format );
494 vsnprintf( line, 80, format, ap );
495 va_end( ap );
496 mp_msg( MSGT_DEMUX, MSGL_V, "XDS: %s\n", line );
498 if ( ty_XDSAddLine == XDS_BUFFER_LENGTH )
500 mp_msg( MSGT_DEMUX, MSGL_ERR, "XDS Buffer would have been blown\n" );
503 if ( ty_XDS_Display[ ty_XDSAddLine ] != 0 )
505 free( ty_XDS_Display[ ty_XDSAddLine ] );
506 ty_XDS_Display[ ty_XDSAddLine ] = 0;
509 ty_XDS_Display[ ty_XDSAddLine ] = malloc( strlen( line ) + 1 );
510 strcpy( ty_XDS_Display[ ty_XDSAddLine ], line );
511 ty_XDSAddLine++;
515 static void ty_DisplayXDSInfo(void)
517 int index;
518 int size;
520 if ( ty_XDSDisplayCount == -1 )
522 for( index = 0 ; index < XDS_BUFFER_LENGTH ; index++ )
524 if ( ty_XDS_Display[ index ] != 0 )
526 break;
529 if ( index != XDS_BUFFER_LENGTH )
531 size = strlen( ty_XDS_Display[ index ] );
533 // Right Justify the XDS Stuff
534 memcpy( &( ty_OSD1.text[ 0 ][ TY_CC_MAX_X - size - 1 ] ),
535 ty_XDS_Display[ index ], size );
536 free( ty_XDS_Display[ index ] );
537 ty_XDS_Display[ index ] = 0;
538 ty_XDSDisplayCount = 0;
539 tyOSDUpdate = 1;
542 else
544 // We cleaned out all the XDS stuff to be displayed
545 ty_XDSAddLine = 0;
548 else
550 // We displayed that piece of XDS information long enough
551 // Let's move on
552 ty_XDSDisplayCount++;
553 if ( ty_XDSDisplayCount >= XDS_DISPLAY_FRAMES )
555 memset( ty_OSD1.text[ 0 ], ' ', TY_CC_MAX_X - 1 );
556 ty_OSD1.text[ 0 ][ TY_CC_MAX_X - 1 ] = 0;
557 ty_XDSDisplayCount = -1;
558 tyOSDUpdate = 1;
564 static int TY_XDS_mode = 0;
565 static int TY_XDS_type = 0;
566 static int TY_XDS_length = 0;
567 static char TY_XDS_checksum = 0;
569 // Array of [ Mode ][ Type ][ Length ]
570 static char TY_XDS [ 8 ][ 25 ][ 34 ];
571 static char TY_XDS_new[ 8 ][ 25 ][ 34 ];
573 // Array of [ MPAARating|TVRating ][ NumberRatings ]
574 static char *TY_XDS_CHIP[ 2 ][ 8 ] =
576 { "(NOT APPLICABLE)", "G", "PG", "PG-13", "R", "NC-17", "X", "(NOT RATED)" },
577 { "(NOT RATED)", "TV-Y", "TV-Y7", "TV-G", "TV-PG", "TV-14", "TV-MA",
578 "(NOT RATED)" }
581 static char *TY_XDS_modes[] =
583 "CURRENT", // 01h-02h current program
584 "FUTURE ", // 03h-04h future program
585 "CHANNEL", // 05h-06h channel
586 "MISC. ", // 07h-08h miscellaneous
587 "PUBLIC ", // 09h-0Ah public service
588 "RESERV.", // 0Bh-0Ch reserved
589 "UNDEF. ",
590 "INVALID",
591 "INVALID",
592 "INVALID"
595 static int ty_XDSdecode( char b1, char b2 )
597 char line[ 80 ];
599 if ( b1 < 0x0F )
600 { // start packet
601 TY_XDS_length = 0;
602 TY_XDS_mode = b1 >> 1; // every other mode is a resume
603 TY_XDS_type = b2;
604 TY_XDS_checksum = b1 + b2;
605 return 0;
608 TY_XDS_checksum += b1 + b2;
610 // eof (next byte is checksum)
611 if ( b1 == 0x0F )
613 // validity check
614 if ( !TY_XDS_length || TY_XDS_checksum & 0x7F )
616 if ( TY_OSD_debug > 3 && !TY_XDS_length )
618 mp_msg( MSGT_DEMUX, MSGL_DBG3,
619 "%% TY_XDS CHECKSUM ERROR (ignoring)\n" );
621 else
623 TY_XDS_mode = 0;
624 TY_XDS_type = 0;
625 return 1;
629 // check to see if the data has changed.
630 if ( strncmp( TY_XDS[ TY_XDS_mode ][ TY_XDS_type ],
631 TY_XDS_new[ TY_XDS_mode ][ TY_XDS_type ], TY_XDS_length - 1 ) )
633 char *TY_XDS_ptr = TY_XDS[ TY_XDS_mode ][ TY_XDS_type ];
635 TY_XDS_ptr[ TY_XDS_length ] = 0;
636 memcpy( TY_XDS[ TY_XDS_mode ][ TY_XDS_type ],
637 TY_XDS_new[ TY_XDS_mode ][ TY_XDS_type ], TY_XDS_length );
639 // nasty hack: only print time codes if seconds are 0
640 if ( TY_XDS_mode == 3 && TY_XDS_type == 1 &&
641 !( TY_XDS_new[ 3 ][ 1 ][ 3 ] & 0x20 ) )
643 return 0;
645 if ( TY_XDS_mode == 0 && TY_XDS_type == 2 &&
646 ( TY_XDS_new[ 0 ][ 2 ][ 4 ] & 0x3f ) > 1 )
648 return 0;
651 mp_msg( MSGT_DEMUX, MSGL_DBG3, "%% %s ", TY_XDS_modes[ TY_XDS_mode ] );
653 line[ 0 ] = 0;
654 // printf( "XDS Code %x\n",
655 // ( TY_XDS_mode << 9 ) + TY_XDS_type + 0x100 );
656 switch ( ( TY_XDS_mode << 9 ) + TY_XDS_type + 0x100 )
658 // cases are specified in 2 bytes hex representing mode, type.
659 // TY_XDS_ptr will point to the current class buffer
660 case 0x0101: // current
661 case 0x0301: // future
663 char *mon[] =
665 "0", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul",
666 "Aug", "Sep", "Oct", "Nov", "Dec", "13", "14", "15"
668 ty_AddXDSToDisplay( "AIR DATE: %s %2d %d:%02d:00",
669 mon[ TY_XDS_ptr[ 3 ] & 0x0f ],
670 TY_XDS_ptr[ 2 ] & 0x1f,
671 TY_XDS_ptr[ 1 ] & 0x1f,
672 TY_XDS_ptr[ 0 ] & 0x3f
675 // Program is tape delayed
676 if ( TY_XDS_ptr[ 3 ] & 0x10 ) ty_AddXDSToDisplay( " TAPE" );
678 break;
680 case 0x0102: // current program length
681 case 0x0302: // future
683 ty_AddXDSToDisplay(
684 "DURATION: %d:%02d:%02d of %d:%02d:%02d",
685 TY_XDS_ptr[ 3 ] & 0x3f,
686 TY_XDS_ptr[ 2 ] & 0x3f,
687 TY_XDS_ptr[ 4 ] & 0x3f,
688 TY_XDS_ptr[ 1 ] & 0x3f,
689 TY_XDS_ptr[ 0 ] & 0x3f, 0);
690 break;
693 case 0x0103: // current program name
694 case 0x0303: // future
696 ty_AddXDSToDisplay( "TITLE: %s", TY_XDS_ptr );
697 break;
700 case 0x0104: // current program type
701 case 0x0304: // future
703 // for now just print out the raw data
704 // requires a 127 string array to parse
705 // properly and isn't worth it.
706 sprintf ( line, "%sGENRE:", line );
708 int x;
709 for ( x = 0 ; x < TY_XDS_length ; x++ )
710 sprintf( line, "%s %02x", line, TY_XDS_ptr[ x ] );
712 ty_AddXDSToDisplay( line );
713 break;
716 case 0x0105: // current program rating
717 case 0x0305: // future
719 sprintf( line, "%sRATING: %s", line,
720 TY_XDS_CHIP[ ( TY_XDS_ptr[ 0 ] & 0x08 ) >> 3 ]
721 [ TY_XDS_ptr[ 1 ] & 0x07 ] );
722 if ( TY_XDS_ptr[ 0 ] & 0x20 )
723 sprintf( line, "%s DIALOGUE", line );
724 if ( TY_XDS_ptr[ 1 ] & 0x08 )
725 sprintf( line, "%s LANGUAGE", line );
726 if ( TY_XDS_ptr[ 1 ] & 0x10 )
727 sprintf( line, "%s SEXUAL", line );
728 if ( TY_XDS_ptr[ 1 ] & 0x20 )
729 sprintf( line, "%s VIOLENCE", line );
730 ty_AddXDSToDisplay( line );
732 // raw output for verification.
733 if ( TY_OSD_debug > 1 )
734 mp_msg( MSGT_DEMUX, MSGL_DBG3, " (%02x %02x)",
735 TY_XDS_ptr[ 0 ], TY_XDS_ptr[ 1 ] );
736 break;
739 case 0x0106: // current program audio services
740 case 0x0306: // future
742 // requires table, never actually seen it used either
743 ty_AddXDSToDisplay( "AUDIO: %02x %02x", TY_XDS_ptr[ 0 ],
744 TY_XDS_ptr[ 1 ] );
745 break;
748 case 0x0109: // current program aspect ratio
749 case 0x0309: // future
751 // requires table, rare
752 ty_AddXDSToDisplay( "ASPECT: %02x %02x",
753 TY_XDS_ptr[ 0 ], TY_XDS_ptr[ 1 ] );
754 break;
757 case 0x0110 ... 0x0117: // program description
759 ty_AddXDSToDisplay( "DESCRIP: %s", TY_XDS_ptr );
760 break;
763 case 0x0501: // channel network name
765 ty_AddXDSToDisplay( "NETWORK: %s", TY_XDS_ptr );
766 break;
769 case 0x0502: // channel network call letters
771 ty_AddXDSToDisplay( "CALLSIGN: %s", TY_XDS_ptr );
772 break;
775 case 0x0701: // misc. time of day
777 #define TIMEZONE ( TY_XDS[ 3 ][ 4 ][ 0 ] & 0x1f )
778 #define DST ( ( TY_XDS[ 3 ][ 4 ][ 0 ] & 0x20 ) >> 5 )
779 struct tm tm =
781 .tm_sec = 0, // sec
782 .tm_min = ( TY_XDS_ptr[ 0 ] & 0x3F ), // min
783 .tm_hour = ( TY_XDS_ptr[ 1 ] & 0x1F ), // hour
784 .tm_mday = ( TY_XDS_ptr[ 2 ] & 0x1F ), // day
785 .tm_mon = ( TY_XDS_ptr[ 3 ] & 0x1f ) - 1, // month
786 .tm_year = ( TY_XDS_ptr[ 5 ] & 0x3f ) + 90, // year
787 .tm_wday = 0, // day of week
788 .tm_yday = 0, // day of year
789 .tm_isdst = 0, // DST
792 time_t time_t = mktime( &tm );
793 char *timestr;
795 time_t -= ( ( TIMEZONE - DST ) * 60 * 60 );
796 timestr = ctime( &time_t );
797 timestr[ strlen( timestr ) - 1 ] = 0;
799 sprintf( line, "%sCUR.TIME: %s ", line, timestr );
800 if ( TY_XDS[ 3 ][ 4 ][ 0 ] )
802 sprintf( line, "%sUTC-%d", line, TIMEZONE );
803 if (DST) sprintf( line, "%s DST", line );
805 else
806 sprintf( line, "%sUTC", line );
808 ty_AddXDSToDisplay( line );
810 break;
813 case 0x0704: //misc. local time zone
815 sprintf( line, "%sTIMEZONE: UTC-%d",
816 line, TY_XDS_ptr[ 0 ] & 0x1f );
817 if ( TY_XDS_ptr[ 0 ] & 0x20 ) sprintf( line, "%s DST", line );
818 ty_AddXDSToDisplay( line );
819 break;
822 default:
824 mp_msg( MSGT_DEMUX, MSGL_DBG3, "UNKNOWN CLASS %d TYPE %d",
825 ( TY_XDS_mode << 1 ) + 1, TY_XDS_type );
826 if ( TY_OSD_debug > 1 )
828 int x;
829 mp_msg( MSGT_DEMUX, MSGL_DBG3, "\nDUMP:\n" );
830 for ( x = 0 ; x < TY_XDS_length ; x++ )
831 mp_msg( MSGT_DEMUX, MSGL_DBG3, " %02x %c",
832 TY_XDS_ptr[ x ], TY_XDS_ptr[ x ] );
833 mp_msg( MSGT_DEMUX, MSGL_DBG3, "\n" );
837 if ( TY_OSD_debug > 1 )
838 mp_msg( MSGT_DEMUX, MSGL_DBG3, " (%d)", TY_XDS_length );
840 TY_XDS_mode = 0;
841 TY_XDS_type = 0;
843 else if ( TY_XDS_length < 34 )
845 TY_XDS_new[ TY_XDS_mode ][ TY_XDS_type ][ TY_XDS_length++ ] = b1;
846 TY_XDS_new[ TY_XDS_mode ][ TY_XDS_type ][ TY_XDS_length++ ] = b2;
848 return 0;
852 // 42 x 10
853 static char *testline = "0123456789012345678901234567890123456789012";
855 // ===========================================================================
856 // Callback from Video Display Processing to put up the OSD
857 // ===========================================================================
858 void ty_processuserdata( unsigned char* buf, int len )
860 int index;
862 sub_justify = 1;
864 if ( subcc_enabled )
866 if ( tyOSDInited == 0 )
868 for ( index = 0; index < SUB_MAX_TEXT ; index++ )
870 ty_OSD1.text[ index ] = malloc( TY_CC_MAX_X );
871 ty_OSD2.text[ index ] = malloc( TY_CC_MAX_X );
873 ty_ClearOSD( 0 );
874 ty_OSD1.lines = SUB_MAX_TEXT;
875 ty_OSD2.lines = SUB_MAX_TEXT;
876 ty_pOSD1 = &ty_OSD1;
877 ty_pOSD2 = &ty_OSD2;
878 tyOSDUpdate = 0;
879 tyOSDInited = 1;
882 if ( buf[ 0 ] == 0x01 )
884 ty_CCdecode( buf[ 1 ], buf[ 2 ] );
886 if ( buf[ 0 ] == 0x02 )
888 ty_XDSdecode( buf[ 1 ], buf[ 2 ] );
891 ty_DisplayXDSInfo();
893 if ( tyOSDUpdate )
895 // for ( index = 0; index < SUB_MAX_TEXT ; index++ )
896 // {
897 // printf( "OSD:%d:%s\n", index, ty_OSD1.text[ index ] );
898 // }
899 vo_sub = &ty_OSD1;
900 vo_osd_changed( OSDTYPE_SUBTITLE );
901 tyOSDUpdate = 0;