From: Laurent Aimar Date: Thu, 16 Apr 2009 19:24:29 +0000 (+0200) Subject: XDS does not mean CC channel 3. X-Git-Tag: 1.0.0-pre2~9 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=8e9bd644895b781b14946674b9f64c3fed46cb16;p=vlc XDS does not mean CC channel 3. --- diff --git a/modules/codec/cc.c b/modules/codec/cc.c index 804899a392..419d576626 100644 --- a/modules/codec/cc.c +++ b/modules/codec/cc.c @@ -624,7 +624,7 @@ static void Eia608ParseChannel( eia608_t *h, uint8_t d[2] ) h->i_channel = 1; else if( d1 == 0x1c ) h->i_channel = 2; - else if( ( d1 >= 0x01 && d1 <= 0x0f ) || d1 == 0x15 ) + else if( d1 == 0x15 ) h->i_channel = 3; else if( d1 == 0x1d ) h->i_channel = 4;