Skip to content
Commits on Source (2)
......@@ -8,6 +8,7 @@ Changes between 3.2 and -next
* Add --lnb-type universal|old-sky option to dvblast
* Add support for multistream-id calculation using --multistream-id-pls-mode,
--multistream-id-pls-code and --multistream-id-is-id options
* Add --passthrough (to stdout) option
Changes between 3.1 and 3.2:
----------------------------
......
/*****************************************************************************
* demux.c
*****************************************************************************
* Copyright (C) 2004, 2008-2011, 2015-2017 VideoLAN
* Copyright (C) 2004, 2008-2011, 2015-2018 VideoLAN
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Andy Gatward <a.j.gatward@reading.ac.uk>
......@@ -732,6 +732,9 @@ static void demux_Handle( block_t *p_ts )
if ( output_dup.config.i_config & OUTPUT_VALID )
output_Put( &output_dup, p_ts );
if ( b_passthrough )
fwrite(p_ts->p_ts, TS_SIZE, 1, stdout);
p_ts->i_refcount--;
if ( !p_ts->i_refcount )
block_Delete( p_ts );
......
......@@ -651,7 +651,7 @@ void usage()
msg_Raw( NULL, " -f --frequency frontend frequency" );
msg_Raw( NULL, " -8 --lnb-type <type> Set LNB type')" );
msg_Raw( NULL, " universal old-sky (default: universal)");
msg_Raw( NULL, " -9 --dvb-plp-id <number> Switch PLP of the DVB-T2 transmission (for Russia special)" );
msg_Raw( NULL, " -9 --dvb-plp-id <number> Switch PLP of the DVB-T2 transmission (default: 0)" );
msg_Raw( NULL, " -F --fec-inner Forward Error Correction (FEC Inner)");
msg_Raw( NULL, " DVB-S2 0|12|23|34|35|56|78|89|910|999 (default auto: 999)");
msg_Raw( NULL, " -I --inversion Inversion (-1 auto, 0 off, 1 on)" );
......