[vlc-commits] Closed Caption: Fix tab offset 3 command

John Stebbins git at videolan.org
Fri Apr 10 11:46:47 CEST 2015


vlc | branch: master | John Stebbins <stebbins at jetheaddev.com> | Tue Apr  7 19:25:21 2015 +0000| [59945c72066ca8303031c89dc3ce724140572a6f] | committer: Jean-Baptiste Kempf

Closed Caption: Fix tab offset 3 command

Incorrect conditional filtered out the command

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=59945c72066ca8303031c89dc3ce724140572a6f
---

 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;
     }



More information about the vlc-commits mailing list