[vlc-commits] Closed Caption: Fix tab offset 3 command
John Stebbins
git at videolan.org
Sun Apr 12 11:24:30 CEST 2015
vlc/vlc-2.2 | branch: master | John Stebbins <stebbins at jetheaddev.com> | Tue Apr 7 19:25:21 2015 +0000| [2e8ad115e10bd299623ebddfffd2a70eceeb01d5] | 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>
(cherry picked from commit 59945c72066ca8303031c89dc3ce724140572a6f)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=2e8ad115e10bd299623ebddfffd2a70eceeb01d5
---
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 7931e31..b0bff90 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