This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:

Subject: libdvbv5: Improve vdr format output for DVB-T(2)
Author:  Chris Mayo <aklh...@gmail.com>
Date:    Mon Oct 17 14:24:32 2016 +0200

Before (1.10.1):
BBC TWO:498000:S0B8C23D12I999M64T8G32Y0:T:27500:201:202,206:0:0:4287:0:0:0
BBC TWO 
HD:474167:S1B8C23D999I999M256T32G128Y0:T:27500:101:102,106:0:0:17472:0:0:0
After:
BBC TWO:498000:B8C23D12G32I999M64S0T8Y0:T:0:201:202,206:0:0:4287:0:0:0
BBC TWO 
HD:474167:B8C23D999G128I999M256S1T32Y0:T:27500:101:102,106:0:0:17472:0:0:0

channels.conf (vdr 2.2.0):
BBC 
TWO:498000000:B8C23D12G32M64S0T8Y0:T:0:201=2:202=eng@3,206=eng@3:0;205=eng:0:4287:9018:4163:0
BBC TWO 
HD:474166670:C23G128M256P0Q16436S1T32X1Y0:T:27500:101=27:102=eng@17,106=eng@17:0;105=eng:0:17472:9018:16515:0

Signed-off-by: Chris Mayo <aklh...@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mche...@s-opensource.com>

 lib/libdvbv5/dvb-vdr-format.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

---

http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=4ad7174b908a36c4f315e3fe2efa7e2f8a6f375a
diff --git a/lib/libdvbv5/dvb-vdr-format.c b/lib/libdvbv5/dvb-vdr-format.c
index ab0e5cf333e3..3d09237afe2a 100644
--- a/lib/libdvbv5/dvb-vdr-format.c
+++ b/lib/libdvbv5/dvb-vdr-format.c
@@ -198,26 +198,26 @@ static const struct dvb_parse_table sys_dvbs2_table[] = {
 };
 
 static const struct dvb_parse_table sys_dvbt_table[] = {
-       { DTV_DELIVERY_SYSTEM, PTABLE(vdr_parse_delivery_system) },
        { DTV_BANDWIDTH_HZ, PTABLE(vdr_parse_bandwidth) },
        { DTV_CODE_RATE_HP, PTABLE(vdr_parse_code_rate_hp) },
        { DTV_CODE_RATE_LP, PTABLE(vdr_parse_code_rate_lp) },
+       { DTV_GUARD_INTERVAL, PTABLE(vdr_parse_guard_interval) },
        { DTV_INVERSION, PTABLE(vdr_parse_inversion) },
        { DTV_MODULATION, PTABLE(vdr_parse_modulation) },
+       { DTV_DELIVERY_SYSTEM, PTABLE(vdr_parse_delivery_system) },
        { DTV_TRANSMISSION_MODE, PTABLE(vdr_parse_trans_mode) },
-       { DTV_GUARD_INTERVAL, PTABLE(vdr_parse_guard_interval) },
        { DTV_HIERARCHY, PTABLE(vdr_parse_hierarchy) },
 };
 
 static const struct dvb_parse_table sys_dvbt2_table[] = {
-       { DTV_DELIVERY_SYSTEM, PTABLE(vdr_parse_delivery_system) },
        { DTV_BANDWIDTH_HZ, PTABLE(vdr_parse_bandwidth) },
        { DTV_CODE_RATE_HP, PTABLE(vdr_parse_code_rate_hp) },
        { DTV_CODE_RATE_LP, PTABLE(vdr_parse_code_rate_lp) },
+       { DTV_GUARD_INTERVAL, PTABLE(vdr_parse_guard_interval) },
        { DTV_INVERSION, PTABLE(vdr_parse_inversion) },
        { DTV_MODULATION, PTABLE(vdr_parse_modulation) },
+       { DTV_DELIVERY_SYSTEM, PTABLE(vdr_parse_delivery_system) },
        { DTV_TRANSMISSION_MODE, PTABLE(vdr_parse_trans_mode) },
-       { DTV_GUARD_INTERVAL, PTABLE(vdr_parse_guard_interval) },
        { DTV_HIERARCHY, PTABLE(vdr_parse_hierarchy) },
        /* DVB-T2 specifics */
        { DTV_STREAM_ID, NULL, },
@@ -378,6 +378,9 @@ int dvb_write_format_vdr(const char *fname,
                /* Output symbol rate */
                srate = 27500000;
                switch(delsys) {
+               case SYS_DVBT:
+                       srate = 0;
+                       break;
                case SYS_DVBS:
                case SYS_DVBS2:
                case SYS_DVBC_ANNEX_A:

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to