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
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2020-11-19 19:20:29 +0300
committerSebastian Dröge <sebastian@centricular.com>2020-11-19 19:27:54 +0300
commita97d1da3ab1fcafc111e369589bb06358e67ecdd (patch)
tree14cbc5c51acee2d9d79ee5f90f51cd2453bc83f0 /video/closedcaption
parentea95c3193983830bccc00ac494f7489019168deb (diff)
closedcaption: Silence type complexity warning
Diffstat (limited to 'video/closedcaption')
-rw-r--r--video/closedcaption/src/mcc_parse/imp.rs1
-rw-r--r--video/closedcaption/src/scc_parse/imp.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/video/closedcaption/src/mcc_parse/imp.rs b/video/closedcaption/src/mcc_parse/imp.rs
index 4af485a82..953b70f3c 100644
--- a/video/closedcaption/src/mcc_parse/imp.rs
+++ b/video/closedcaption/src/mcc_parse/imp.rs
@@ -155,6 +155,7 @@ fn parse_timecode_rate(
}
impl State {
+ #[allow(clippy::type_complexity)]
fn get_line(
&mut self,
drain: bool,
diff --git a/video/closedcaption/src/scc_parse/imp.rs b/video/closedcaption/src/scc_parse/imp.rs
index b80284465..22a2b4770 100644
--- a/video/closedcaption/src/scc_parse/imp.rs
+++ b/video/closedcaption/src/scc_parse/imp.rs
@@ -63,6 +63,7 @@ impl Default for State {
}
impl State {
+ #[allow(clippy::type_complexity)]
fn get_line(
&mut self,
drain: bool,