From 8e9bd644895b781b14946674b9f64c3fed46cb16 Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Thu, 16 Apr 2009 21:24:29 +0200 Subject: [PATCH] XDS does not mean CC channel 3. --- 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 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; -- 2.39.2