From: Mauro Carvalho Chehab Date: Sat, 15 Feb 2014 18:29:00 +0000 (+0900) Subject: dvb: Fix VCT handling X-Git-Tag: v4l-utils-1.2.0~212 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4799074aa38812d9120a475cbaf742ae1a5a830d;p=platform%2Fupstream%2Fv4l-utils.git dvb: Fix VCT handling Protocol version is wrong. Fix it. Signed-off-by: Mauro Carvalho Chehab --- 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;