Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
adjust plp usage text
· 740f8e96
Christophe Massiot
authored
Jun 30, 2018
Patch courtesy of Stefan Pöschel.
740f8e96
implement --passthrough option
· 5241d8e4
Christophe Massiot
authored
Jun 30, 2018
5241d8e4
Hide whitespace changes
Inline
Side-by-side
NEWS
View file @
5241d8e4
...
...
@@ -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
View file @
5241d8e4
/*****************************************************************************
* demux.c
*****************************************************************************
* Copyright (C) 2004, 2008-2011, 2015-201
7
VideoLAN
* Copyright (C) 2004, 2008-2011, 2015-201
8
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
);
...
...
dvblast.c
View file @
5241d8e4
...
...
@@ -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)"
);
...
...