[PATCH] dvb_frontend: Multistream support

2012-09-13 Thread CrazyCat
Multistream support for DVBAPI. Version increased to 5.8. Signed-off-by: Evgeny Plehov diff --git a/include/linux/dvb/frontend.h b/include/linux/dvb/frontend.h index bb51edf..a6a6839 100644 --- a/include/linux/dvb/frontend.h +++ b/include/linux/dvb/frontend.h @@ -62,6 +62,7 @@ typedef enum fe_cap

Re: [PATCH] dvb_frontend: Multistream support

2012-09-11 Thread Mauro Carvalho Chehab
Em 20-08-2012 21:42, CrazyCat escreveu: > Multistream support with all recommendations. > > Signed-off-by: Evgeny Plehov > diff --git a/include/linux/dvb/frontend.h b/include/linux/dvb/frontend.h > index bb51edf..a6a6839 100644 > --- a/include/linux/dvb/frontend.h > +++ b/include/linux/dvb/fronte

Re: [PATCH] dvb_frontend: Multistream support

2012-08-21 Thread Georgi Chorbadzhiyski
On 8/21/12 3:42 AM, CrazyCat wrote: Multistream support with all recommendations. Signed-off-by: Evgeny Plehov diff --git a/include/linux/dvb/frontend.h b/include/linux/dvb/frontend.h index bb51edf..a6a6839 100644 --- a/include/linux/dvb/frontend.h +++ b/include/linux/dvb/frontend.h @@ -62,6 +6

Re: [PATCH] dvb_frontend: Multistream support

2012-08-20 Thread CrazyCat
Multistream support with all recommendations. Signed-off-by: Evgeny Plehov diff --git a/include/linux/dvb/frontend.h b/include/linux/dvb/frontend.h index bb51edf..a6a6839 100644 --- a/include/linux/dvb/frontend.h +++ b/include/linux/dvb/frontend.h @@ -62,6 +62,7 @@ typedef enum fe_caps {

Re: [PATCH] dvb_frontend: Multistream support

2012-08-17 Thread Mauro Carvalho Chehab
Em 17-08-2012 14:21, CrazyCat escreveu: > > 16.08.2012, 21:11, "Antti Palosaari" : >>> - /* ISDB-T specifics */ >>> - u32 isdbs_ts_id; >>> - >>> - /* DVB-T2 specifics */ >>> - u32 dvbt2_plp_id; >>> + /* Multistream specifics */ >>> + u32 stream_id; >> >> u32 == 32 bit lo

Re: [PATCH] dvb_frontend: Multistream support

2012-08-17 Thread Antti Palosaari
On 08/17/2012 08:21 PM, CrazyCat wrote: 16.08.2012, 21:11, "Antti Palosaari" : - /* ISDB-T specifics */ - u32 isdbs_ts_id; - - /* DVB-T2 specifics */ - u32 dvbt2_plp_id; + /* Multistream specifics */ + u32 stream_id; u32 == 32 bit long unsigned number. See ne

Re: [PATCH] dvb_frontend: Multistream support

2012-08-17 Thread Mauro Carvalho Chehab
Em 17-08-2012 14:52, CrazyCat escreveu: > 16.08.2012, 21:11, "Antti Palosaari" : >> @Mauro, should we rename also DTV_ISDBS_TS_ID to DTV_ISDBS_TS_ID_LEGACY >> to remind users ? > > Maybe leave DTV_ISDBS_TS_ID and convert DTV_DVBT2_PLP_ID to > DTV_DVB_STREAM_ID ? and dvbt2_plp_id convert to dvb_s

Re: [PATCH] dvb_frontend: Multistream support

2012-08-17 Thread CrazyCat
16.08.2012, 21:11, "Antti Palosaari" : > @Mauro, should we rename also DTV_ISDBS_TS_ID to DTV_ISDBS_TS_ID_LEGACY > to remind users ? Maybe leave DTV_ISDBS_TS_ID and convert DTV_DVBT2_PLP_ID to DTV_DVB_STREAM_ID ? and dvbt2_plp_id convert to dvb_stream_id. Because DVB and ISDB different standard

Re: [PATCH] dvb_frontend: Multistream support

2012-08-17 Thread CrazyCat
16.08.2012, 21:11, "Antti Palosaari" : >>  - /* ISDB-T specifics */ >>  - u32 isdbs_ts_id; >>  - >>  - /* DVB-T2 specifics */ >>  - u32 dvbt2_plp_id; >>  + /* Multistream specifics */ >>  + u32 stream_id; > > u32 == 32 bit long unsigned number. See next comment. >> >>  - c->isd

Re: [PATCH] dvb_frontend: Multistream support

2012-08-16 Thread Akihiro TSUKADA
Hi, > diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.h > b/drivers/media/dvb/dvb-core/dvb_frontend.h > index 7c64c09..bec0cda 100644 > --- a/drivers/media/dvb/dvb-core/dvb_frontend.h > +++ b/drivers/media/dvb/dvb-core/dvb_frontend.h > @@ -368,11 +368,8 @@ struct dtv_frontend_properties { >

Re: [PATCH] dvb_frontend: Multistream support

2012-08-16 Thread Mauro Carvalho Chehab
Em 16-08-2012 15:11, Antti Palosaari escreveu: > On 08/16/2012 08:46 PM, CrazyCat wrote: >> DTV_ISDBS_TS_ID replaced with DTV_STREAM_ID. >> Aliases DTV_ISDBS_TS_ID, DTV_DVBS2_MIS_ID for DTV_STREAM_ID. >> DTV_DVBT2_PLP_ID marked as legacy. >> >> Signed-off-by: Evgeny Plehov >> diff --git a/include/

Re: [PATCH] dvb_frontend: Multistream support

2012-08-16 Thread Antti Palosaari
On 08/16/2012 08:46 PM, CrazyCat wrote: DTV_ISDBS_TS_ID replaced with DTV_STREAM_ID. Aliases DTV_ISDBS_TS_ID, DTV_DVBS2_MIS_ID for DTV_STREAM_ID. DTV_DVBT2_PLP_ID marked as legacy. Signed-off-by: Evgeny Plehov diff --git a/include/linux/dvb/frontend.h b/include/linux/dvb/frontend.h index f50d40

[PATCH] dvb_frontend: Multistream support

2012-08-16 Thread CrazyCat
DTV_ISDBS_TS_ID replaced with DTV_STREAM_ID. Aliases DTV_ISDBS_TS_ID, DTV_DVBS2_MIS_ID for DTV_STREAM_ID. DTV_DVBT2_PLP_ID marked as legacy. Signed-off-by: Evgeny Plehov diff --git a/include/linux/dvb/frontend.h b/include/linux/dvb/frontend.h index f50d405..3444dda 100644 --- a/include/linux/dvb/