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
//! This crate wraps `gstreamer` and `opencv` to simplify the interface of
//! loading videos. Currenlty it only supports loading image but adding video
//! files is easy (TODO).
//!
//! There are two types of data that can be loaded: frame (`cv::Mat`) and x264
//! encoded bytes. Both interface will return a Receiver<T> that applications
//! can use.
//!
//! Internally there will be multiple threads running (two for `load_frame`;
//! four for `load_x264`).
//!
//! Illustrated in a diagram as below:
//!
//! ```
//!           Interface 1                                   Interface 2
//!            (tx, rx)
//! schedule_recv => frame_loader => gstreamer => x264_loader => APP
//! ```
//!
//! We also support directly loading x264 encoded stream from file.

#[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
}