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

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/text
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@onestream.live>2023-04-10 14:34:46 +0300
committerGuillaume Desmottes <guillaume.desmottes@onestream.live>2023-04-10 14:35:32 +0300
commit403004a85e7bdd7567d3381d592ef00e5914b6ed (patch)
tree93caa4153b50799f4e784beaad9b075330ae4648 /text
parenta45581987189b45bc9d9d55750d0181806d6fe1b (diff)
fix typos
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1170>
Diffstat (limited to 'text')
-rw-r--r--text/json/src/jsongstparse/imp.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/text/json/src/jsongstparse/imp.rs b/text/json/src/jsongstparse/imp.rs
index 8d9393980..3550daf69 100644
--- a/text/json/src/jsongstparse/imp.rs
+++ b/text/json/src/jsongstparse/imp.rs
@@ -782,7 +782,7 @@ impl JsonGstParse {
}
}
QueryViewMut::Position(q) => {
- // For Time answer ourselfs, otherwise forward
+ // For Time answer ourselves, otherwise forward
if q.format() == gst::Format::Time {
let state = self.state.lock().unwrap();
q.set(state.last_position);
@@ -792,7 +792,7 @@ impl JsonGstParse {
}
}
QueryViewMut::Duration(q) => {
- // For Time answer ourselfs, otherwise forward
+ // For Time answer ourselves, otherwise forward
let state = self.state.lock().unwrap();
if q.format() == gst::Format::Time {
if let Some(pull) = state.pull.as_ref() {