-
Notifications
You must be signed in to change notification settings - Fork 24
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
fix:whipinto and whepfrom mode sdp file path failed at windows #247
Conversation
Codecov ReportAttention: Patch coverage is
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove test_liveion_stream_connect
and test_liveion_stream_ffmpeg
unit test #[cfg(not(windows))]
libs/cli/src/lib.rs
Outdated
@@ -133,7 +133,14 @@ pub fn get_codec_type(codec: &RTCRtpCodecCapability) -> RTPCodecType { | |||
|
|||
pub fn create_child(command: Option<String>) -> Result<Option<Mutex<Child>>> { | |||
let child = if let Some(command) = command { | |||
let command = if cfg!(windows) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cfg!
is macro!
Fix #230 |
No description provided.