Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs,core: remove reference to multicast #3019

Merged
merged 2 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,6 @@ mixausrc Mixes another audio source into audio stream
mixminus Mixes N-1 audio streams for conferencing
mpa MPA Speech and Audio Codec
mqtt MQTT (Message Queue Telemetry Transport) module
multicast Multicast RTP send and receive
mwi Message Waiting Indication
natpmp NAT Port Mapping Protocol (NAT-PMP) module
netroam Detects and applies changes of the local network addresses
Expand Down
10 changes: 0 additions & 10 deletions docs/examples/config
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ module_app menu.so
#module_app ctrl_tcp.so
module_app ctrl_dbus.so
#module_app httpreq.so
#module_app multicast.so
module_app netroam.so


Expand Down Expand Up @@ -297,14 +296,5 @@ video_selfview window # {window,pip}
#httpreq_cert cert.pem
#httpreq_key key.pem

# multicast receivers (in priority order)- port number must be even
#multicast_call_prio 0
#multicast_ttl 1
#multicast_jbuf_type fixed # off, fixed, adaptive
#multicast_jbuf_delay 5-10 # frames
#multicast_jbuf_wish 6 # frames for start
#multicast_listener 224.0.2.21:50000
#multicast_listener 224.0.2.21:50002

# avformat
#avformat_pass_through yes
12 changes: 0 additions & 12 deletions src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,6 @@ int config_write_template(const char *file, const struct config *cfg)
(void)re_fprintf(f, "#module_app\t\t" "ctrl_tcp" MOD_EXT "\n");
(void)re_fprintf(f, "#module_app\t\t" "ctrl_dbus"MOD_EXT"\n");
(void)re_fprintf(f, "#module_app\t\t" "httpreq"MOD_EXT"\n");
(void)re_fprintf(f, "#module_app\t\t" "multicast"MOD_EXT"\n");
(void)re_fprintf(f, "module_app\t\t" "netroam"MOD_EXT"\n");
(void)re_fprintf(f, "\n");

Expand Down Expand Up @@ -1376,17 +1375,6 @@ int config_write_template(const char *file, const struct config *cfg)
"#httpreq_cert\t\tcert.pem\n"
"#httpreq_key\t\tkey.pem\n");

(void)re_fprintf(f,
"\n# multicast receivers (in priority order)"
"- port number must be even\n"
"#multicast_call_prio\t0\n"
"#multicast_ttl\t1\n"
"#multicast_jbuf_type\tfixed\t\t"
"# off, fixed, adaptive\n"
"#multicast_jbuf_delay\t5-10\t\t# frames\n"
"#multicast_listener\t224.0.2.21:50000\n"
"#multicast_listener\t224.0.2.21:50002\n");

(void)re_fprintf(f,
"\n# avformat\n"
"#avformat_hwaccel\t%s\n"
Expand Down