Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pngenc.rs « tests « rspng « video - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de57b1965004c14bcf7c52593686e15a0f50b671 (plain)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// Copyright (C) 2020 Natanael Mojica <neithanmo@gmail.com>
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

fn init() {
    use std::sync::Once;
    static INIT: Once = Once::new();

    INIT.call_once(|| {
        gst::init().unwrap();
        gstrspng::plugin_register_static().expect("Failed to register rspng plugin");
    });
}

#[test]
fn test_png_encode_gray() {
    init();

    let video_info = gst_video::VideoInfo::new(gst_video::VideoFormat::Gray8, 160, 120)
        .fps((30, 1))
        .build()
        .unwrap();
    test_png_encode(&video_info);
}

#[test]
fn test_png_encode_gray16() {
    init();

    let video_info = gst_video::VideoInfo::new(gst_video::VideoFormat::Gray16Be, 160, 120)
        .fps((30, 1))
        .build()
        .unwrap();
    test_png_encode(&video_info);
}

#[test]
fn test_png_encode_rgb() {
    init();

    let video_info = gst_video::VideoInfo::new(gst_video::VideoFormat::Rgb, 160, 120)
        .fps((30, 1))
        .build()
        .unwrap();
    test_png_encode(&video_info);
}

#[test]
fn test_png_encode_rgba() {
    init();

    let video_info = gst_video::VideoInfo::new(gst_video::VideoFormat::Rgba, 160, 120)
        .fps((30, 1))
        .build()
        .unwrap();
    test_png_encode(&video_info);
}

fn test_png_encode(video_info: &gst_video::VideoInfo) {
    let mut h = gst_check::Harness::new("rspngenc");
    h.set_src_caps(video_info.to_caps().unwrap());
    h.play();

    for pts in 0..5 {
        let buffer = {
            let mut buffer = gst::Buffer::with_size(video_info.size()).unwrap();
            {
                let buffer = buffer.get_mut().unwrap();
                buffer.set_pts(gst::ClockTime::from_seconds(pts));
            }
            let mut vframe =
                gst_video::VideoFrame::from_buffer_writable(buffer, &video_info).unwrap();
            for v in vframe.plane_data_mut(0).unwrap() {
                *v = 128;
            }
            vframe.into_buffer()
        };
        h.push(buffer.clone()).unwrap();
    }
    h.push_event(gst::event::Eos::new());

    (0..5).for_each(|_| {
        let buffer = h.pull().unwrap();
        assert!(!buffer.get_flags().contains(gst::BufferFlags::DELTA_UNIT))
    });
}