]> git.sesse.net Git - vlc/commitdiff
XDS does not mean CC channel 3.
authorLaurent Aimar <fenrir@videolan.org>
Thu, 16 Apr 2009 19:24:29 +0000 (21:24 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Thu, 16 Apr 2009 19:59:53 +0000 (21:59 +0200)
modules/codec/cc.c

index 804899a3925f0fa589e9e3ccd73df021f96afa64..419d576626823f8374ed551d73c73be5bb465683 100644 (file)
@@ -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;