remove drop
This commit is contained in:
parent
272fa91d03
commit
3220610c3e
@ -153,9 +153,9 @@ fn main() -> Result<(), ()> {
|
||||
|
||||
match config.out.mode {
|
||||
// write files/playlist to HLS m3u8 playlist
|
||||
HLS => write_hls(&config, play_control, playout_stat, proc_control.clone()),
|
||||
HLS => write_hls(&config, play_control, playout_stat, proc_control),
|
||||
// play on desktop or stream to a remote target
|
||||
_ => player(&config, play_control, playout_stat, proc_control.clone()),
|
||||
_ => player(&config, play_control, playout_stat, proc_control),
|
||||
}
|
||||
|
||||
info!("Playout done...");
|
||||
@ -167,7 +167,7 @@ fn main() -> Result<(), ()> {
|
||||
}
|
||||
|
||||
drop(msg);
|
||||
drop(proc_control);
|
||||
// drop(proc_control);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user