Home
last modified time | relevance | path

Searched refs:matches (Results 1 – 3 of 3) sorted by relevance

/xiu/application/xiu/src/
H A Dmain.rs107 let matches = cmd.clone().get_matches(); in main() localVariable
109 let config = if let Some(path) = matches.get_one::<String>("config_file_path") { in main()
119 let rtmp_port_o = matches.get_one::<usize>("rtmp"); in main()
120 let rtsp_port_o = matches.get_one::<usize>("rtsp"); in main()
121 let webrtc_port_o = matches.get_one::<usize>("webrtc"); in main()
143 let httpflv_port = match matches.get_one::<usize>("httpflv") { in main()
147 let hls_port = match matches.get_one::<usize>("hls") { in main()
151 let log_level = match matches.get_one::<String>("log") { in main()
/xiu/library/container/mpegts/src/
H A Dutils.rs21 matches!(stream_type, epsi_stream_type::PSI_STREAM_H264) in is_steam_type_video()
25 matches!( in is_steam_type_audio()
/xiu/application/pprtmp/src/
H A Dmain.rs49 let matches = cmd.clone().get_matches(); in main() localVariable
50 let pull_rtmp_url = matches.get_one::<String>("pullrtmp").unwrap().clone(); in main()
51 let push_rtmp_url = matches.get_one::<String>("pushrtmp").unwrap().clone(); in main()