mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 17:41:05 +00:00
examples/rtsp-server-subclass: Fix some clippy warnings
This commit is contained in:
parent
a7b0d42964
commit
be2f5c690b
1 changed files with 9 additions and 9 deletions
|
@ -28,7 +28,7 @@ struct UsageError(#[error(not(source))] String);
|
||||||
|
|
||||||
fn main_loop() -> Result<(), Error> {
|
fn main_loop() -> Result<(), Error> {
|
||||||
let main_loop = glib::MainLoop::new(None, false);
|
let main_loop = glib::MainLoop::new(None, false);
|
||||||
let server = server::Server::new();
|
let server = server::Server::default();
|
||||||
// Much like HTTP servers, RTSP servers have multiple endpoints that
|
// Much like HTTP servers, RTSP servers have multiple endpoints that
|
||||||
// provide different streams. Here, we ask our server to give
|
// provide different streams. Here, we ask our server to give
|
||||||
// us a reference to his list of endpoints, so we can add our
|
// us a reference to his list of endpoints, so we can add our
|
||||||
|
@ -38,7 +38,7 @@ fn main_loop() -> Result<(), Error> {
|
||||||
// Next, we create our custom factory for the endpoint we want to create.
|
// Next, we create our custom factory for the endpoint we want to create.
|
||||||
// The job of the factory is to create a new pipeline for each client that
|
// The job of the factory is to create a new pipeline for each client that
|
||||||
// connects, or (if configured to do so) to reuse an existing pipeline.
|
// connects, or (if configured to do so) to reuse an existing pipeline.
|
||||||
let factory = media_factory::Factory::new();
|
let factory = media_factory::Factory::default();
|
||||||
// This setting specifies whether each connecting client gets the output
|
// This setting specifies whether each connecting client gets the output
|
||||||
// of a new instance of the pipeline, or whether all connected clients share
|
// of a new instance of the pipeline, or whether all connected clients share
|
||||||
// the output of the same pipeline.
|
// the output of the same pipeline.
|
||||||
|
@ -167,9 +167,9 @@ mod media_factory {
|
||||||
unsafe impl Send for Factory {}
|
unsafe impl Send for Factory {}
|
||||||
unsafe impl Sync for Factory {}
|
unsafe impl Sync for Factory {}
|
||||||
|
|
||||||
impl Factory {
|
impl Default for Factory {
|
||||||
// Creates a new instance of our factory
|
// Creates a new instance of our factory
|
||||||
pub fn new() -> Factory {
|
fn default() -> Factory {
|
||||||
glib::Object::new(Self::static_type(), &[])
|
glib::Object::new(Self::static_type(), &[])
|
||||||
.expect("Failed to create factory")
|
.expect("Failed to create factory")
|
||||||
.downcast()
|
.downcast()
|
||||||
|
@ -289,7 +289,7 @@ mod server {
|
||||||
&self,
|
&self,
|
||||||
server: &gst_rtsp_server::RTSPServer,
|
server: &gst_rtsp_server::RTSPServer,
|
||||||
) -> Option<gst_rtsp_server::RTSPClient> {
|
) -> Option<gst_rtsp_server::RTSPClient> {
|
||||||
let client = super::client::Client::new();
|
let client = super::client::Client::default();
|
||||||
|
|
||||||
// Duplicated from the default implementation
|
// Duplicated from the default implementation
|
||||||
client.set_session_pool(server.get_session_pool().as_ref());
|
client.set_session_pool(server.get_session_pool().as_ref());
|
||||||
|
@ -321,9 +321,9 @@ mod server {
|
||||||
unsafe impl Send for Server {}
|
unsafe impl Send for Server {}
|
||||||
unsafe impl Sync for Server {}
|
unsafe impl Sync for Server {}
|
||||||
|
|
||||||
impl Server {
|
impl Default for Server {
|
||||||
// Creates a new instance of our factory
|
// Creates a new instance of our factory
|
||||||
pub fn new() -> Server {
|
fn default() -> Server {
|
||||||
glib::Object::new(Self::static_type(), &[])
|
glib::Object::new(Self::static_type(), &[])
|
||||||
.expect("Failed to create server")
|
.expect("Failed to create server")
|
||||||
.downcast()
|
.downcast()
|
||||||
|
@ -389,9 +389,9 @@ mod client {
|
||||||
unsafe impl Send for Client {}
|
unsafe impl Send for Client {}
|
||||||
unsafe impl Sync for Client {}
|
unsafe impl Sync for Client {}
|
||||||
|
|
||||||
impl Client {
|
impl Default for Client {
|
||||||
// Creates a new instance of our factory
|
// Creates a new instance of our factory
|
||||||
pub fn new() -> Client {
|
fn default() -> Client {
|
||||||
glib::Object::new(Self::static_type(), &[])
|
glib::Object::new(Self::static_type(), &[])
|
||||||
.expect("Failed to create client")
|
.expect("Failed to create client")
|
||||||
.downcast()
|
.downcast()
|
||||||
|
|
Loading…
Reference in a new issue