From 4799074aa38812d9120a475cbaf742ae1a5a830d Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Sun, 16 Feb 2014 03:29:00 +0900 Subject: [PATCH] dvb: Fix VCT handling Protocol version is wrong. Fix it. Signed-off-by: Mauro Carvalho Chehab --- lib/include/descriptors/vct.h | 1 - lib/libdvbv5/descriptors/vct.c | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/include/descriptors/vct.h b/lib/include/descriptors/vct.h index f3dad6c..bb3250f 100644 --- a/lib/include/descriptors/vct.h +++ b/lib/include/descriptors/vct.h @@ -87,7 +87,6 @@ struct atsc_table_vct_channel { struct atsc_table_vct { struct atsc_table_header header; - uint8_t ATSC_protocol_version; uint8_t num_channels_in_section; /* diff --git a/lib/libdvbv5/descriptors/vct.c b/lib/libdvbv5/descriptors/vct.c index f1c823d..cb75b8b 100644 --- a/lib/libdvbv5/descriptors/vct.c +++ b/lib/libdvbv5/descriptors/vct.c @@ -151,7 +151,6 @@ void atsc_table_vct_print(struct dvb_v5_fe_parms *parms, struct atsc_table_vct * atsc_table_header_print(parms, &vct->header); - dvb_log("|- Protocol version %d", vct->ATSC_protocol_version); dvb_log("|- #channels %d", vct->num_channels_in_section); dvb_log("|\\ channel_id"); const struct atsc_table_vct_channel *channel = vct->channel; -- 2.7.4