mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-09-02 09:43:48 +00:00
pcap_writer: Make target-property and pad-path properties writable again
The warning reported in
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2031#note_2874920
is no longer emitted.
This reverts commit 6f7a1e21d5
.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2281>
This commit is contained in:
parent
1e205c842e
commit
e7c0485e8c
2 changed files with 2 additions and 4 deletions
|
@ -12756,7 +12756,7 @@
|
|||
"blurb": "Pad path to target",
|
||||
"conditionally-available": false,
|
||||
"construct": false,
|
||||
"construct-only": true,
|
||||
"construct-only": false,
|
||||
"controllable": false,
|
||||
"default": "NULL",
|
||||
"mutable": "null",
|
||||
|
@ -12768,7 +12768,7 @@
|
|||
"blurb": "Factory name to target",
|
||||
"conditionally-available": false,
|
||||
"construct": false,
|
||||
"construct-only": true,
|
||||
"construct-only": false,
|
||||
"controllable": false,
|
||||
"default": "NULL",
|
||||
"mutable": "null",
|
||||
|
|
|
@ -171,7 +171,6 @@ pub struct PcapWriter {
|
|||
name="target-factory",
|
||||
get,
|
||||
set,
|
||||
construct_only,
|
||||
type = Option<String>,
|
||||
member = target_factory,
|
||||
blurb = "Factory name to target")
|
||||
|
@ -180,7 +179,6 @@ pub struct PcapWriter {
|
|||
name="pad-path",
|
||||
get,
|
||||
set,
|
||||
construct_only,
|
||||
type = Option<String>,
|
||||
member = pad_path,
|
||||
blurb = "Pad path to target")
|
||||
|
|
Loading…
Reference in a new issue