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/video
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-01-05 13:32:01 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-01-05 13:33:54 +0300
commit27435ad82eaad2745fa144d837e7c4d818d3099f (patch)
treec9e2a446b8a5726ae9b8a32cecd8bf1e61c2255e /video
parentd846f527af8ed8bf9072aa1b32268390fede16e6 (diff)
Update for API changes
Diffstat (limited to 'video')
-rw-r--r--video/closedcaption/src/transcriberbin/imp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/closedcaption/src/transcriberbin/imp.rs b/video/closedcaption/src/transcriberbin/imp.rs
index 33679bed..059af53d 100644
--- a/video/closedcaption/src/transcriberbin/imp.rs
+++ b/video/closedcaption/src/transcriberbin/imp.rs
@@ -878,7 +878,7 @@ impl BinImpl for TranscriberBin {
let s = self.state.lock().unwrap();
if let Some(state) = s.as_ref() {
- if msg.src().as_ref() == Some(state.transcriber.upcast_ref()) {
+ if msg.src() == Some(state.transcriber.upcast_ref()) {
gst::error!(
CAT,
imp: self,