1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
use super::{Format, Input, Output};
use crate::ffi::*;
use std::ptr;

pub struct Iter {
    input: *mut AVInputFormat,
    output: *mut AVOutputFormat,
    step: Step,
}

enum Step {
    Input,
    Output,
    Done,
}

impl Iter {
    pub fn new() -> Self {
        Iter {
            input: ptr::null_mut(),
            output: ptr::null_mut(),
            step: Step::Input,
        }
    }
}

impl Default for Iter {
    fn default() -> Self {
        Self::new()
    }
}

impl Iterator for Iter {
    type Item = Format;

    fn next(&mut self) -> Option<<Self as Iterator>::Item> {
        unsafe {
            match self.step {
                Step::Input => {
                    let ptr = av_iformat_next(self.input);

                    if ptr.is_null() && !self.input.is_null() {
                        self.step = Step::Output;

                        self.next()
                    } else {
                        self.input = ptr;

                        Some(Format::Input(Input::wrap(ptr)))
                    }
                }

                Step::Output => {
                    let ptr = av_oformat_next(self.output);

                    if ptr.is_null() && !self.output.is_null() {
                        self.step = Step::Done;

                        self.next()
                    } else {
                        self.output = ptr;

                        Some(Format::Output(Output::wrap(ptr)))
                    }
                }

                Step::Done => None,
            }
        }
    }
}