mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-25 13:01:07 +00:00
ts-udpsrc: align default port with C counterpart
... and also with the default settings for ts-udpsink.
This commit is contained in:
parent
05207cafea
commit
0858dfedb4
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ use crate::runtime::{Async, Context, PadSrc, PadSrcRef, Task};
|
|||
use crate::socket::{wrap_socket, GioSocketWrapper, Socket, SocketError, SocketRead};
|
||||
|
||||
const DEFAULT_ADDRESS: Option<&str> = Some("0.0.0.0");
|
||||
const DEFAULT_PORT: i32 = 5000;
|
||||
const DEFAULT_PORT: i32 = 5004;
|
||||
const DEFAULT_REUSE: bool = true;
|
||||
const DEFAULT_CAPS: Option<gst::Caps> = None;
|
||||
const DEFAULT_MTU: u32 = 1492;
|
||||
|
|
Loading…
Reference in a new issue