[MPlayer-cvslog] r24494 - trunk/libmpdemux/demux_ty.c

reimar subversion at mplayerhq.hu
Fri Sep 14 21:13:48 CEST 2007


Author: reimar
Date: Fri Sep 14 21:13:47 2007
New Revision: 24494

Log:
Get rid of more code duplication


Modified:
   trunk/libmpdemux/demux_ty.c

Modified: trunk/libmpdemux/demux_ty.c
==============================================================================
--- trunk/libmpdemux/demux_ty.c	(original)
+++ trunk/libmpdemux/demux_ty.c	Fri Sep 14 21:13:47 2007
@@ -447,7 +447,6 @@ static int demux_ty_fill_buffer( demuxer
    int              esOffset1;
    int              esOffset2;
 
-   unsigned char    lastCC[ 16 ];
    unsigned char    lastXDS[ 16 ];
 
    TiVoInfo         *tivo = demux->priv;
@@ -878,44 +877,16 @@ static int demux_ty_fill_buffer( demuxer
 				errorHeader++;
 		}
       // ================================================================
-      // Closed Caption
-      // ================================================================
-      else if ( type == 0x01 )
-		{
-			unsigned char b1;
-			unsigned char b2;
-
-			b1 = ( ( ( recPtr[ 0 ] & 0x0f ) << 4 ) | 
-				( ( recPtr[ 1 ] & 0xf0 ) >> 4 ) );
-			b1 &= 0x7f;
-			b2 = ( ( ( recPtr[ 1 ] & 0x0f ) << 4 ) | 
-				( ( recPtr[ 2 ] & 0xf0 ) >> 4 ) );
-			b2 &= 0x7f;
-
-			mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:CC %x %x\n", b1, b2 );
-
-			lastCC[ 0x00 ] = 0x00;
-			lastCC[ 0x01 ] = 0x00;
-			lastCC[ 0x02 ] = 0x01;
-			lastCC[ 0x03 ] = 0xb2;
-			lastCC[ 0x04 ] = 'T';
-			lastCC[ 0x05 ] = 'Y';
-			lastCC[ 0x06 ] = 0x01;
-			lastCC[ 0x07 ] = b1;
-			lastCC[ 0x08 ] = b2;
-         if ( subcc_enabled )
-			   demux_ty_CopyToDemuxPacket( TY_V, tivo, demux->video, lastCC, 0x09,
-  				   ( demux->filepos + offset ), tivo->lastVideoPTS );
-		}
-      // ================================================================
-      // Extended Data Services
+      // 1 = Closed Caption
+      // 2 = Extended Data Services
       // ================================================================
-		else if ( type == 0x02 )
+		else if ( type == 0x01 || type == 0x02 )
 		{
+                        unsigned char lastXDS[ 16 ];
 			int b = AV_RB24(recPtr) >> 4;
 			b &= 0x7f7f;
 
-         mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:XDS %04x\n", b);
+         mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:%s %04x\n", type == 1 ? "CC" : "XDS", b);
 
 			lastXDS[ 0x00 ] = 0x00;
 			lastXDS[ 0x01 ] = 0x00;
@@ -923,7 +894,7 @@ static int demux_ty_fill_buffer( demuxer
 			lastXDS[ 0x03 ] = 0xb2;
 			lastXDS[ 0x04 ] = 'T';
 			lastXDS[ 0x05 ] = 'Y';
-			lastXDS[ 0x06 ] = 0x02;
+			lastXDS[ 0x06 ] = type;
 			lastXDS[ 0x07 ] = b >> 8;
 			lastXDS[ 0x08 ] = b;
          if ( subcc_enabled )



More information about the MPlayer-cvslog mailing list