mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 09:31:06 +00:00
video: Implement iterator for VideoOverlayComposition
This commit is contained in:
parent
dc7e705f44
commit
219616ced0
1 changed files with 64 additions and 0 deletions
|
@ -287,4 +287,68 @@ impl VideoOverlayCompositionRef {
|
|||
)
|
||||
}
|
||||
}
|
||||
|
||||
pub fn iter(&self) -> VideoOverlayCompositionIterator {
|
||||
VideoOverlayCompositionIterator {
|
||||
composition: self,
|
||||
idx: 0,
|
||||
len: self.n_rectangles(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> IntoIterator for &'a VideoOverlayComposition {
|
||||
type IntoIter = VideoOverlayCompositionIterator<'a>;
|
||||
type Item = VideoOverlayRectangle;
|
||||
|
||||
fn into_iter(self) -> Self::IntoIter {
|
||||
self.iter()
|
||||
}
|
||||
}
|
||||
|
||||
pub struct VideoOverlayCompositionIterator<'a> {
|
||||
composition: &'a VideoOverlayCompositionRef,
|
||||
idx: u32,
|
||||
len: u32,
|
||||
}
|
||||
|
||||
impl<'a> Iterator for VideoOverlayCompositionIterator<'a> {
|
||||
type Item = VideoOverlayRectangle;
|
||||
|
||||
fn next(&mut self) -> Option<Self::Item> {
|
||||
if self.idx == self.len {
|
||||
return None;
|
||||
}
|
||||
|
||||
let rect = self.composition.rectangle(self.idx).unwrap();
|
||||
self.idx += 1;
|
||||
|
||||
Some(rect)
|
||||
}
|
||||
|
||||
fn size_hint(&self) -> (usize, Option<usize>) {
|
||||
if self.idx == self.len {
|
||||
return (0, Some(0));
|
||||
}
|
||||
|
||||
let remaining = (self.len - self.idx) as usize;
|
||||
|
||||
(remaining, Some(remaining))
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> DoubleEndedIterator for VideoOverlayCompositionIterator<'a> {
|
||||
fn next_back(&mut self) -> Option<Self::Item> {
|
||||
if self.idx == self.len {
|
||||
return None;
|
||||
}
|
||||
|
||||
self.len -= 1;
|
||||
|
||||
let rect = self.composition.rectangle(self.len).unwrap();
|
||||
|
||||
Some(rect)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> ExactSizeIterator for VideoOverlayCompositionIterator<'a> {}
|
||||
|
|
Loading…
Reference in a new issue