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
#[macro_use]
extern crate error_chain;
#[macro_use]
extern crate log;
extern crate cv;
extern crate gst;
extern crate schedule_recv;
extern crate csv;
pub mod loader;
mod pipeline;
mod errors {
use gst;
use csv;
error_chain!{
foreign_links {
Io(::std::io::Error);
Recv(::std::sync::mpsc::RecvError);
Csv(csv::Error);
}
errors {
Gst(t: String) {
description("gstreamer internal")
display("gstreamer internal error {}", t)
}
EndStream {
description("end of stream")
display("end of stream")
}
}
}
impl From<gst::Error> for Error {
fn from(err: gst::Error) -> Error {
Error::from_kind(ErrorKind::Gst(err.message()))
}
}
}
fn skip_to_fps(skip: usize) -> f64 {
(30.0 / (skip as f64 + 1.0) * 10.0).round() / 10.0
}