mirror of
https://github.com/nestriness/warp.git
synced 2025-12-15 19:35:37 +02:00
feat: Update gst-plugin-version-helper dependency to v0.8.0
This change updates the gst-plugin-version-helper dependency to version 0.8.0. The new version brings enhancements and improvements to the plugin, ensuring compatibility and optimizing functionality. This update is necessary to improve the overall performance and stability of the code. No issue reference.
This commit is contained in:
@@ -329,6 +329,7 @@ impl MoqSink {
|
||||
|
||||
fn send_to_network(&self, buffer: gst::Buffer) -> Result<(), Box<dyn std::error::Error>> {
|
||||
//Let this be our publisher
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
@@ -362,11 +363,17 @@ impl ObjectSubclass for MoqSink {
|
||||
srcpad,
|
||||
}
|
||||
}
|
||||
|
||||
type Interfaces;
|
||||
|
||||
type Instance;
|
||||
|
||||
type Class;
|
||||
}
|
||||
|
||||
impl ObjectImpl for MoqSink {
|
||||
fn constructed(&self, obj: &Self::Type) {
|
||||
self.parent_constructed(obj);
|
||||
self.parent_constructed();
|
||||
obj.add_pad(&self.srcpad).unwrap();
|
||||
}
|
||||
}
|
||||
@@ -536,12 +543,13 @@ impl Sender {
|
||||
.with_no_client_auth();
|
||||
|
||||
// Allow disabling TLS verification altogether.
|
||||
if config.tls_disable_verify {
|
||||
let noop = NoCertificateVerification {};
|
||||
tls_config
|
||||
.dangerous()
|
||||
.set_certificate_verifier(Arc::new(noop));
|
||||
}
|
||||
// if config.tls_disable_verify {
|
||||
// let noop = NoCertificateVerification {};
|
||||
// tls_config
|
||||
// .dangerous()
|
||||
// .set_certificate_verifier(Arc::new(noop));
|
||||
// }
|
||||
Ok(())
|
||||
}
|
||||
|
||||
async fn send_segment(
|
||||
|
||||
Reference in New Issue
Block a user