Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>2023-10-24 22:28:04 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-11-10 17:01:11 +0300
commit90a22950d23041c5ecfcf9ce5867bdc434e9fc24 (patch)
tree32aedde57e7e2f2a1e711b35839bebf180ede25f /utils
parent54bc4012d25c55d9d2a5535942c19f435e583679 (diff)
livesync: Rename activatemode methods to *_activatemode
This matches the other plugins. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1388>
Diffstat (limited to 'utils')
-rw-r--r--utils/livesync/src/livesync/imp.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/utils/livesync/src/livesync/imp.rs b/utils/livesync/src/livesync/imp.rs
index a06bf4ac..72d54573 100644
--- a/utils/livesync/src/livesync/imp.rs
+++ b/utils/livesync/src/livesync/imp.rs
@@ -203,8 +203,8 @@ impl ObjectSubclass for LiveSync {
.activatemode_function(|pad, parent, mode, active| {
Self::catch_panic_pad_function(
parent,
- || Err(gst::loggable_error!(CAT, "sink_activate_mode panicked")),
- |livesync| livesync.sink_activate_mode(pad, mode, active),
+ || Err(gst::loggable_error!(CAT, "sink_activatemode panicked")),
+ |livesync| livesync.sink_activatemode(pad, mode, active),
)
})
.event_function(|pad, parent, event| {
@@ -239,8 +239,8 @@ impl ObjectSubclass for LiveSync {
.activatemode_function(|pad, parent, mode, active| {
Self::catch_panic_pad_function(
parent,
- || Err(gst::loggable_error!(CAT, "src_activate_mode panicked")),
- |livesync| livesync.src_activate_mode(pad, mode, active),
+ || Err(gst::loggable_error!(CAT, "src_activatemode panicked")),
+ |livesync| livesync.src_activatemode(pad, mode, active),
)
})
.event_function(|pad, parent, event| {
@@ -496,7 +496,7 @@ impl State {
}
impl LiveSync {
- fn sink_activate_mode(
+ fn sink_activatemode(
&self,
pad: &gst::Pad,
mode: gst::PadMode,
@@ -542,7 +542,7 @@ impl LiveSync {
Ok(())
}
- fn src_activate_mode(
+ fn src_activatemode(
&self,
pad: &gst::Pad,
mode: gst::PadMode,