[vlc-devel] [PATCH] Closed Caption: Fix tab offset 3 command
    John Stebbins 
    stebbins at jetheaddev.com
       
    Tue Apr  7 22:25:21 CEST 2015
    
    
  
Incorrect conditional filtered out the command
---
 modules/codec/cc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/codec/cc.c b/modules/codec/cc.c
index 91e35ee..db279cc 100644
--- a/modules/codec/cc.c
+++ b/modules/codec/cc.c
@@ -773,7 +773,7 @@ static bool Eia608ParseData( eia608_t *h, uint8_t d1, uint8_t d2 )
         ON( 0x20, 0x2f, Eia608ParseCommand0x14( h, d2 ) );
         break;
     case 0x17:
-        ON( 0x21, 0x22, Eia608ParseCommand0x17( h, d2 ) );
+        ON( 0x21, 0x23, Eia608ParseCommand0x17( h, d2 ) );
         ON( 0x2e, 0x2f, Eia608ParseTextAttribute( h, d2 ) );
         break;
     }
-- 
2.1.0
    
    
More information about the vlc-devel
mailing list