2019-04-02 16:58:39 +00:00
|
|
|
// This example demostrates how to output GL textures, within an
|
|
|
|
// EGL/X11 context provided by the application, and render those
|
|
|
|
// textures in the GL application.
|
2018-10-18 10:25:14 +00:00
|
|
|
|
|
|
|
// {videotestsrc} - { glsinkbin }
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate gstreamer as gst;
|
|
|
|
use gst::prelude::*;
|
|
|
|
|
|
|
|
extern crate gstreamer_app as gst_app;
|
|
|
|
extern crate gstreamer_gl as gst_gl;
|
|
|
|
use gst_gl::prelude::*;
|
|
|
|
extern crate gstreamer_video as gst_video;
|
|
|
|
|
|
|
|
extern crate glib;
|
|
|
|
|
|
|
|
use std::error::Error as StdError;
|
|
|
|
use std::ffi::CStr;
|
|
|
|
use std::mem;
|
|
|
|
use std::ptr;
|
|
|
|
use std::sync::{mpsc, Arc, Mutex};
|
|
|
|
use std::thread;
|
|
|
|
|
|
|
|
extern crate failure;
|
|
|
|
use failure::Error;
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate failure_derive;
|
|
|
|
|
|
|
|
extern crate glutin;
|
2019-02-27 18:58:04 +00:00
|
|
|
use glutin::ContextTrait;
|
2018-10-18 10:25:14 +00:00
|
|
|
|
|
|
|
#[path = "../examples-common.rs"]
|
|
|
|
mod examples_common;
|
|
|
|
|
|
|
|
#[derive(Debug, Fail)]
|
|
|
|
#[fail(display = "Missing element {}", _0)]
|
|
|
|
struct MissingElement(&'static str);
|
|
|
|
|
|
|
|
#[derive(Debug, Fail)]
|
|
|
|
#[fail(
|
|
|
|
display = "Received error from {}: {} (debug: {:?})",
|
|
|
|
src, error, debug
|
|
|
|
)]
|
|
|
|
struct ErrorMessage {
|
|
|
|
src: String,
|
|
|
|
error: String,
|
|
|
|
debug: Option<String>,
|
|
|
|
#[cause]
|
|
|
|
cause: glib::Error,
|
|
|
|
}
|
|
|
|
|
2019-02-28 08:32:13 +00:00
|
|
|
#[rustfmt::skip]
|
2018-10-18 10:25:14 +00:00
|
|
|
static VERTICES: [f32; 20] = [
|
|
|
|
1.0, 1.0, 0.0, 1.0, 0.0,
|
|
|
|
-1.0, 1.0, 0.0, 0.0, 0.0,
|
|
|
|
-1.0, -1.0, 0.0, 0.0, 1.0,
|
|
|
|
1.0, -1.0, 0.0, 1.0, 1.0,
|
|
|
|
];
|
|
|
|
|
|
|
|
static INDICES: [u16; 6] = [0, 1, 2, 0, 2, 3];
|
|
|
|
|
2019-02-28 08:32:13 +00:00
|
|
|
#[rustfmt::skip]
|
2018-10-18 10:25:14 +00:00
|
|
|
static IDENTITY: [f32; 16] = [
|
|
|
|
1.0, 0.0, 0.0, 0.0,
|
|
|
|
0.0, 1.0, 0.0, 0.0,
|
|
|
|
0.0, 0.0, 1.0, 0.0,
|
|
|
|
0.0, 0.0, 0.0, 1.0,
|
|
|
|
];
|
|
|
|
|
2019-02-28 08:54:32 +00:00
|
|
|
const VS_SRC: &[u8] = b"
|
2018-10-18 10:25:14 +00:00
|
|
|
uniform mat4 u_transformation;
|
|
|
|
attribute vec4 a_position;
|
|
|
|
attribute vec2 a_texcoord;
|
|
|
|
varying vec2 v_texcoord;
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
gl_Position = u_transformation * a_position;
|
|
|
|
v_texcoord = a_texcoord;
|
|
|
|
}
|
|
|
|
\0";
|
|
|
|
|
2019-02-28 08:54:32 +00:00
|
|
|
const FS_SRC: &[u8] = b"
|
2018-10-18 10:25:14 +00:00
|
|
|
#ifdef GL_ES
|
|
|
|
precision mediump float;
|
|
|
|
#endif
|
|
|
|
varying vec2 v_texcoord;
|
|
|
|
uniform sampler2D tex;
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
gl_FragColor = texture2D(tex, v_texcoord);
|
|
|
|
}
|
|
|
|
\0";
|
|
|
|
|
2019-02-28 08:54:32 +00:00
|
|
|
#[allow(clippy::unreadable_literal)]
|
|
|
|
#[allow(clippy::unused_unit)]
|
|
|
|
#[allow(clippy::too_many_arguments)]
|
2018-10-18 10:25:14 +00:00
|
|
|
mod gl {
|
|
|
|
pub use self::Gles2 as Gl;
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/test_gl_bindings.rs"));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Gl {
|
|
|
|
gl: gl::Gl,
|
|
|
|
program: gl::types::GLuint,
|
|
|
|
attr_position: gl::types::GLint,
|
|
|
|
attr_texture: gl::types::GLint,
|
|
|
|
vao: gl::types::GLuint,
|
|
|
|
vertex_buffer: gl::types::GLuint,
|
|
|
|
vbo_indices: gl::types::GLuint,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Gl {
|
|
|
|
fn draw_frame(&self, texture_id: gl::types::GLuint) {
|
|
|
|
unsafe {
|
|
|
|
// render
|
|
|
|
self.gl.ClearColor(0.0, 0.0, 0.0, 1.0);
|
|
|
|
self.gl.Clear(gl::COLOR_BUFFER_BIT);
|
|
|
|
|
|
|
|
self.gl.BlendColor(0.0, 0.0, 0.0, 1.0);
|
|
|
|
if self.gl.BlendFuncSeparate.is_loaded() {
|
|
|
|
self.gl.BlendFuncSeparate(
|
|
|
|
gl::SRC_ALPHA,
|
|
|
|
gl::CONSTANT_COLOR,
|
|
|
|
gl::ONE,
|
|
|
|
gl::ONE_MINUS_SRC_ALPHA,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
self.gl.BlendFunc(gl::SRC_ALPHA, gl::CONSTANT_COLOR);
|
|
|
|
}
|
|
|
|
self.gl.BlendEquation(gl::FUNC_ADD);
|
|
|
|
self.gl.Enable(gl::BLEND);
|
|
|
|
|
|
|
|
self.gl.UseProgram(self.program);
|
|
|
|
|
|
|
|
if self.gl.BindVertexArray.is_loaded() {
|
|
|
|
self.gl.BindVertexArray(self.vao);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
self.gl
|
|
|
|
.BindBuffer(gl::ELEMENT_ARRAY_BUFFER, self.vbo_indices);
|
|
|
|
self.gl.BindBuffer(gl::ARRAY_BUFFER, self.vertex_buffer);
|
|
|
|
|
|
|
|
// Load the vertex position
|
|
|
|
self.gl.VertexAttribPointer(
|
|
|
|
self.attr_position as gl::types::GLuint,
|
|
|
|
3,
|
|
|
|
gl::FLOAT,
|
|
|
|
gl::FALSE,
|
|
|
|
(5 * mem::size_of::<f32>()) as gl::types::GLsizei,
|
|
|
|
ptr::null(),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Load the texture coordinate
|
|
|
|
self.gl.VertexAttribPointer(
|
|
|
|
self.attr_texture as gl::types::GLuint,
|
|
|
|
2,
|
|
|
|
gl::FLOAT,
|
|
|
|
gl::FALSE,
|
|
|
|
(5 * mem::size_of::<f32>()) as gl::types::GLsizei,
|
|
|
|
(3 * mem::size_of::<f32>()) as *const () as *const _,
|
|
|
|
);
|
|
|
|
|
|
|
|
self.gl.EnableVertexAttribArray(self.attr_position as _);
|
|
|
|
self.gl.EnableVertexAttribArray(self.attr_texture as _);
|
|
|
|
}
|
|
|
|
|
|
|
|
self.gl.ActiveTexture(gl::TEXTURE0);
|
|
|
|
self.gl.BindTexture(gl::TEXTURE_2D, texture_id);
|
|
|
|
|
|
|
|
let location = self
|
|
|
|
.gl
|
|
|
|
.GetUniformLocation(self.program, b"tex\0".as_ptr() as *const _);
|
|
|
|
self.gl.Uniform1i(location, 0);
|
|
|
|
|
|
|
|
let location = self
|
|
|
|
.gl
|
|
|
|
.GetUniformLocation(self.program, b"u_transformation\0".as_ptr() as *const _);
|
|
|
|
self.gl
|
|
|
|
.UniformMatrix4fv(location, 1, gl::FALSE, IDENTITY.as_ptr() as *const _);
|
|
|
|
|
|
|
|
self.gl
|
|
|
|
.DrawElements(gl::TRIANGLES, 6, gl::UNSIGNED_SHORT, ptr::null());
|
|
|
|
|
|
|
|
self.gl.BindTexture(gl::TEXTURE_2D, 0);
|
|
|
|
self.gl.UseProgram(0);
|
|
|
|
|
|
|
|
if self.gl.BindVertexArray.is_loaded() {
|
|
|
|
self.gl.BindVertexArray(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
self.gl.BindBuffer(gl::ELEMENT_ARRAY_BUFFER, 0);
|
|
|
|
self.gl.BindBuffer(gl::ARRAY_BUFFER, 0);
|
|
|
|
|
|
|
|
self.gl.DisableVertexAttribArray(self.attr_position as _);
|
|
|
|
self.gl.DisableVertexAttribArray(self.attr_texture as _);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn resize(&self, size: glutin::dpi::PhysicalSize) {
|
|
|
|
unsafe {
|
|
|
|
self.gl
|
|
|
|
.Viewport(0, 0, size.width as i32, size.height as i32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn load(gl_context: &glutin::Context) -> Gl {
|
|
|
|
let gl = gl::Gl::load_with(|ptr| gl_context.get_proc_address(ptr) as *const _);
|
|
|
|
|
|
|
|
let version = unsafe {
|
|
|
|
let data = CStr::from_ptr(gl.GetString(gl::VERSION) as *const _)
|
|
|
|
.to_bytes()
|
|
|
|
.to_vec();
|
|
|
|
String::from_utf8(data).unwrap()
|
|
|
|
};
|
|
|
|
|
|
|
|
println!("OpenGL version {}", version);
|
|
|
|
|
|
|
|
let (program, attr_position, attr_texture, vao, vertex_buffer, vbo_indices) = unsafe {
|
|
|
|
let vs = gl.CreateShader(gl::VERTEX_SHADER);
|
|
|
|
gl.ShaderSource(vs, 1, [VS_SRC.as_ptr() as *const _].as_ptr(), ptr::null());
|
|
|
|
gl.CompileShader(vs);
|
|
|
|
|
|
|
|
let fs = gl.CreateShader(gl::FRAGMENT_SHADER);
|
|
|
|
gl.ShaderSource(fs, 1, [FS_SRC.as_ptr() as *const _].as_ptr(), ptr::null());
|
|
|
|
gl.CompileShader(fs);
|
|
|
|
|
|
|
|
let program = gl.CreateProgram();
|
|
|
|
gl.AttachShader(program, vs);
|
|
|
|
gl.AttachShader(program, fs);
|
|
|
|
gl.LinkProgram(program);
|
|
|
|
|
|
|
|
{
|
|
|
|
let mut success: gl::types::GLint = 1;
|
|
|
|
gl.GetProgramiv(fs, gl::LINK_STATUS, &mut success);
|
|
|
|
assert!(success != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
let attr_position = gl.GetAttribLocation(program, b"a_position\0".as_ptr() as *const _);
|
|
|
|
let attr_texture = gl.GetAttribLocation(program, b"a_texcoord\0".as_ptr() as *const _);
|
|
|
|
|
|
|
|
let mut vao = mem::uninitialized();
|
|
|
|
if gl.BindVertexArray.is_loaded() {
|
|
|
|
gl.GenVertexArrays(1, &mut vao);
|
|
|
|
gl.BindVertexArray(vao);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut vertex_buffer = mem::uninitialized();
|
|
|
|
gl.GenBuffers(1, &mut vertex_buffer);
|
|
|
|
gl.BindBuffer(gl::ARRAY_BUFFER, vertex_buffer);
|
|
|
|
gl.BufferData(
|
|
|
|
gl::ARRAY_BUFFER,
|
|
|
|
(VERTICES.len() * mem::size_of::<f32>()) as gl::types::GLsizeiptr,
|
|
|
|
VERTICES.as_ptr() as *const _,
|
|
|
|
gl::STATIC_DRAW,
|
|
|
|
);
|
|
|
|
|
|
|
|
let mut vbo_indices = mem::uninitialized();
|
|
|
|
gl.GenBuffers(1, &mut vbo_indices);
|
|
|
|
gl.BindBuffer(gl::ELEMENT_ARRAY_BUFFER, vbo_indices);
|
|
|
|
gl.BufferData(
|
|
|
|
gl::ELEMENT_ARRAY_BUFFER,
|
|
|
|
(INDICES.len() * mem::size_of::<u16>()) as gl::types::GLsizeiptr,
|
|
|
|
INDICES.as_ptr() as *const _,
|
|
|
|
gl::STATIC_DRAW,
|
|
|
|
);
|
|
|
|
|
|
|
|
if gl.BindVertexArray.is_loaded() {
|
|
|
|
gl.BindBuffer(gl::ELEMENT_ARRAY_BUFFER, vbo_indices);
|
|
|
|
gl.BindBuffer(gl::ARRAY_BUFFER, vertex_buffer);
|
|
|
|
|
|
|
|
// Load the vertex position
|
|
|
|
gl.VertexAttribPointer(
|
|
|
|
attr_position as gl::types::GLuint,
|
|
|
|
3,
|
|
|
|
gl::FLOAT,
|
|
|
|
gl::FALSE,
|
|
|
|
(5 * mem::size_of::<f32>()) as gl::types::GLsizei,
|
|
|
|
ptr::null(),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Load the texture coordinate
|
|
|
|
gl.VertexAttribPointer(
|
|
|
|
attr_texture as gl::types::GLuint,
|
|
|
|
2,
|
|
|
|
gl::FLOAT,
|
|
|
|
gl::FALSE,
|
|
|
|
(5 * mem::size_of::<f32>()) as gl::types::GLsizei,
|
|
|
|
(3 * mem::size_of::<f32>()) as *const () as *const _,
|
|
|
|
);
|
|
|
|
|
|
|
|
gl.EnableVertexAttribArray(attr_position as _);
|
|
|
|
gl.EnableVertexAttribArray(attr_texture as _);
|
|
|
|
|
|
|
|
gl.BindVertexArray(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
gl.BindBuffer(gl::ELEMENT_ARRAY_BUFFER, 0);
|
|
|
|
gl.BindBuffer(gl::ARRAY_BUFFER, 0);
|
|
|
|
|
|
|
|
(
|
|
|
|
program,
|
|
|
|
attr_position,
|
|
|
|
attr_texture,
|
|
|
|
vao,
|
|
|
|
vertex_buffer,
|
|
|
|
vbo_indices,
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
Gl {
|
2019-02-28 08:54:32 +00:00
|
|
|
gl,
|
2018-10-18 10:25:14 +00:00
|
|
|
program,
|
|
|
|
attr_position,
|
|
|
|
attr_texture,
|
|
|
|
vao,
|
|
|
|
vertex_buffer,
|
|
|
|
vbo_indices,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct App {
|
|
|
|
pipeline: gst::Pipeline,
|
|
|
|
appsink: gst_app::AppSink,
|
2019-03-22 17:39:15 +00:00
|
|
|
glupload: gst::Element,
|
2018-10-18 10:25:14 +00:00
|
|
|
bus: gst::Bus,
|
|
|
|
events_loop: Arc<glutin::EventsLoop>,
|
2019-03-12 07:27:50 +00:00
|
|
|
windowed_context: Arc<glutin::WindowedContext>,
|
2019-03-22 17:39:15 +00:00
|
|
|
shared_context: gst_gl::GLContext,
|
2018-10-18 10:25:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl App {
|
|
|
|
fn new() -> Result<App, Error> {
|
|
|
|
gst::init()?;
|
|
|
|
|
2019-03-22 17:39:15 +00:00
|
|
|
let (pipeline, appsink, glupload) = App::create_pipeline()?;
|
2018-10-18 10:25:14 +00:00
|
|
|
let bus = pipeline
|
|
|
|
.get_bus()
|
|
|
|
.expect("Pipeline without bus. Shouldn't happen!");
|
|
|
|
|
|
|
|
let events_loop = glutin::EventsLoop::new();
|
|
|
|
let window = glutin::WindowBuilder::new().with_title("GL rendering");
|
2019-03-12 07:27:50 +00:00
|
|
|
let windowed_context = Arc::new(
|
2019-02-27 18:58:04 +00:00
|
|
|
glutin::ContextBuilder::new()
|
|
|
|
.with_vsync(true)
|
2019-03-12 07:27:50 +00:00
|
|
|
.build_windowed(window, &events_loop)?,
|
2018-10-18 10:25:14 +00:00
|
|
|
);
|
|
|
|
|
2019-03-22 17:39:15 +00:00
|
|
|
unsafe { windowed_context.make_current()? };
|
|
|
|
|
2019-03-12 07:27:50 +00:00
|
|
|
let windowed_context_ = windowed_context.clone();
|
|
|
|
let context = windowed_context_.context();
|
2019-04-09 17:13:28 +00:00
|
|
|
|
|
|
|
#[cfg(any(feature = "gl-x11", feature = "gl-wayland"))]
|
2019-04-02 16:58:39 +00:00
|
|
|
let inner_window = windowed_context_.window();
|
2019-02-27 18:58:47 +00:00
|
|
|
|
2019-03-22 17:39:15 +00:00
|
|
|
let shared_context: gst_gl::GLContext;
|
2019-02-27 18:58:47 +00:00
|
|
|
if cfg!(target_os = "linux") {
|
|
|
|
use glutin::os::unix::RawHandle;
|
2019-04-09 17:13:28 +00:00
|
|
|
#[cfg(any(feature = "gl-x11", feature = "gl-wayland"))]
|
|
|
|
use glutin::os::unix::WindowExt;
|
2019-02-27 18:58:47 +00:00
|
|
|
use glutin::os::ContextTraitExt;
|
|
|
|
|
|
|
|
let api = App::map_gl_api(context.get_api());
|
|
|
|
|
2019-04-02 16:58:39 +00:00
|
|
|
let (gl_context, gl_display, platform) = match unsafe { context.raw_handle() } {
|
2019-04-09 17:13:28 +00:00
|
|
|
#[cfg(any(feature = "gl-egl", feature = "gl-wayland"))]
|
2019-04-02 16:58:39 +00:00
|
|
|
RawHandle::Egl(egl_context) => {
|
2019-04-09 17:13:28 +00:00
|
|
|
#[cfg(feature = "gl-egl")]
|
2019-04-02 16:58:39 +00:00
|
|
|
let gl_display = if let Some(display) = unsafe { context.get_egl_display() } {
|
|
|
|
unsafe { gst_gl::GLDisplayEGL::new_with_egl_display(display as usize) }
|
|
|
|
.unwrap()
|
|
|
|
} else {
|
|
|
|
panic!("EGL context without EGL display");
|
|
|
|
};
|
|
|
|
|
2019-04-09 17:13:28 +00:00
|
|
|
#[cfg(not(feature = "gl-egl"))]
|
|
|
|
let gl_display = if let Some(display) = inner_window.get_wayland_display() {
|
|
|
|
unsafe { gst_gl::GLDisplayWayland::new_with_display(display as usize) }
|
|
|
|
.unwrap()
|
|
|
|
} else {
|
|
|
|
panic!("Wayland window without Wayland display");
|
|
|
|
};
|
|
|
|
|
2019-04-02 16:58:39 +00:00
|
|
|
(
|
|
|
|
egl_context as usize,
|
|
|
|
gl_display.upcast::<gst_gl::GLDisplay>(),
|
|
|
|
gst_gl::GLPlatform::EGL,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
#[cfg(feature = "gl-x11")]
|
|
|
|
RawHandle::Glx(glx_context) => {
|
|
|
|
let gl_display = if let Some(display) = inner_window.get_xlib_display() {
|
|
|
|
unsafe { gst_gl::GLDisplayX11::new_with_display(display as usize) }.unwrap()
|
|
|
|
} else {
|
|
|
|
panic!("X11 window without X Display");
|
|
|
|
};
|
|
|
|
|
|
|
|
(
|
|
|
|
glx_context as usize,
|
|
|
|
gl_display.upcast::<gst_gl::GLDisplay>(),
|
|
|
|
gst_gl::GLPlatform::GLX,
|
|
|
|
)
|
|
|
|
}
|
2019-04-09 17:13:28 +00:00
|
|
|
handler => panic!("Unsupported platform: {:?}.", handler),
|
2019-04-02 16:58:39 +00:00
|
|
|
};
|
|
|
|
|
2019-03-22 17:39:15 +00:00
|
|
|
shared_context =
|
2019-04-02 16:58:39 +00:00
|
|
|
unsafe { gst_gl::GLContext::new_wrapped(&gl_display, gl_context, platform, api) }
|
2019-02-27 18:58:47 +00:00
|
|
|
.unwrap();
|
|
|
|
|
2019-03-22 17:39:15 +00:00
|
|
|
shared_context
|
|
|
|
.activate(true)
|
|
|
|
.expect("Couldn't activate wrapped GL context");
|
|
|
|
|
|
|
|
shared_context.fill_info()?;
|
|
|
|
|
|
|
|
let gl_context = shared_context.clone();
|
|
|
|
|
2019-02-28 08:54:32 +00:00
|
|
|
#[allow(clippy::single_match)]
|
2019-02-27 18:58:47 +00:00
|
|
|
bus.set_sync_handler(move |_, msg| {
|
|
|
|
match msg.view() {
|
2019-04-02 16:58:39 +00:00
|
|
|
gst::MessageView::NeedContext(ctxt) => {
|
2019-02-27 18:58:47 +00:00
|
|
|
let context_type = ctxt.get_context_type();
|
|
|
|
if context_type == *gst_gl::GL_DISPLAY_CONTEXT_TYPE {
|
|
|
|
if let Some(el) =
|
|
|
|
msg.get_src().map(|s| s.downcast::<gst::Element>().unwrap())
|
|
|
|
{
|
|
|
|
let context = gst::Context::new(context_type, true);
|
|
|
|
context.set_gl_display(&gl_display);
|
|
|
|
el.set_context(&context);
|
|
|
|
}
|
2018-10-18 10:25:14 +00:00
|
|
|
}
|
2019-02-27 18:58:47 +00:00
|
|
|
if context_type == "gst.gl.app_context" {
|
|
|
|
if let Some(el) =
|
|
|
|
msg.get_src().map(|s| s.downcast::<gst::Element>().unwrap())
|
2018-10-18 10:25:14 +00:00
|
|
|
{
|
2019-02-27 18:58:47 +00:00
|
|
|
let mut context = gst::Context::new(context_type, true);
|
|
|
|
{
|
|
|
|
let context = context.get_mut().unwrap();
|
|
|
|
let mut s = context.get_mut_structure();
|
|
|
|
s.set_value("context", gl_context.to_send_value());
|
|
|
|
}
|
|
|
|
el.set_context(&context);
|
2018-10-18 10:25:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-27 18:58:47 +00:00
|
|
|
_ => (),
|
2018-10-18 10:25:14 +00:00
|
|
|
}
|
|
|
|
|
2019-02-27 18:58:47 +00:00
|
|
|
gst::BusSyncReply::Pass
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
panic!("This example only has Linux support");
|
|
|
|
}
|
2018-10-18 10:25:14 +00:00
|
|
|
|
|
|
|
Ok(App {
|
|
|
|
pipeline,
|
|
|
|
appsink,
|
2019-03-22 17:39:15 +00:00
|
|
|
glupload,
|
2018-10-18 10:25:14 +00:00
|
|
|
bus,
|
|
|
|
events_loop: Arc::new(events_loop),
|
2019-03-12 07:27:50 +00:00
|
|
|
windowed_context,
|
2019-03-22 17:39:15 +00:00
|
|
|
shared_context,
|
2018-10-18 10:25:14 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn setup(&self) -> Result<(thread::JoinHandle<()>, mpsc::Receiver<gst::Sample>), Error> {
|
|
|
|
let bus = self.bus.clone();
|
|
|
|
let bus_handler = thread::spawn(move || {
|
|
|
|
let ret = App::gst_loop(bus);
|
|
|
|
if ret.is_err() {
|
|
|
|
eprintln!("ERROR! {:?}", ret);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let (sender, receiver) = mpsc::channel();
|
|
|
|
let sender_clone = Mutex::new(sender.clone());
|
|
|
|
self.appsink.set_callbacks(
|
|
|
|
gst_app::AppSinkCallbacks::new()
|
|
|
|
.new_sample(move |appsink| {
|
2019-01-08 16:13:37 +00:00
|
|
|
let sample = appsink.pull_sample().ok_or(gst::FlowError::Eos)?;
|
2018-10-18 10:25:14 +00:00
|
|
|
|
2019-04-23 16:53:10 +00:00
|
|
|
{
|
|
|
|
let _buffer = sample.get_buffer().ok_or_else(|| {
|
2019-01-08 16:13:37 +00:00
|
|
|
gst_element_error!(
|
|
|
|
appsink,
|
|
|
|
gst::ResourceError::Failed,
|
2019-04-23 16:53:10 +00:00
|
|
|
("Failed to get buffer from appsink")
|
2019-01-08 16:13:37 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
gst::FlowError::Error
|
|
|
|
})?;
|
|
|
|
|
2019-04-23 16:53:10 +00:00
|
|
|
let _info = sample
|
|
|
|
.get_caps()
|
|
|
|
.and_then(|caps| gst_video::VideoInfo::from_caps(caps))
|
|
|
|
.ok_or_else(|| {
|
|
|
|
gst_element_error!(
|
|
|
|
appsink,
|
|
|
|
gst::ResourceError::Failed,
|
|
|
|
("Failed to get video info from sample")
|
|
|
|
);
|
|
|
|
|
|
|
|
gst::FlowError::Error
|
|
|
|
})?;
|
|
|
|
}
|
|
|
|
|
2019-01-08 16:13:37 +00:00
|
|
|
sender_clone
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.send(sample)
|
|
|
|
.map(|_| gst::FlowSuccess::Ok)
|
|
|
|
.map_err(|_| gst::FlowError::Error)
|
2018-10-18 10:25:14 +00:00
|
|
|
})
|
|
|
|
.build(),
|
|
|
|
);
|
|
|
|
|
2019-01-08 16:13:37 +00:00
|
|
|
self.pipeline.set_state(gst::State::Playing)?;
|
2018-10-18 10:25:14 +00:00
|
|
|
|
|
|
|
Ok((bus_handler, receiver))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn map_gl_api(api: glutin::Api) -> gst_gl::GLAPI {
|
|
|
|
match api {
|
|
|
|
glutin::Api::OpenGl => gst_gl::GLAPI::OPENGL3,
|
|
|
|
glutin::Api::OpenGlEs => gst_gl::GLAPI::GLES2,
|
|
|
|
_ => gst_gl::GLAPI::NONE,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-22 17:39:15 +00:00
|
|
|
fn create_pipeline() -> Result<(gst::Pipeline, gst_app::AppSink, gst::Element), Error> {
|
2018-10-18 10:25:14 +00:00
|
|
|
let pipeline = gst::Pipeline::new(None);
|
|
|
|
let src = gst::ElementFactory::make("videotestsrc", None)
|
|
|
|
.ok_or(MissingElement("videotestsrc"))?;
|
|
|
|
let sink =
|
|
|
|
gst::ElementFactory::make("glsinkbin", None).ok_or(MissingElement("glsinkbin"))?;
|
|
|
|
|
|
|
|
pipeline.add_many(&[&src, &sink])?;
|
|
|
|
src.link(&sink)?;
|
|
|
|
|
|
|
|
let appsink = gst::ElementFactory::make("appsink", None)
|
|
|
|
.ok_or(MissingElement("appsink"))?
|
|
|
|
.dynamic_cast::<gst_app::AppSink>()
|
|
|
|
.expect("Sink element is expected to be an appsink!");
|
|
|
|
|
|
|
|
sink.set_property("sink", &appsink)?;
|
|
|
|
|
|
|
|
appsink.set_property("enable-last-sample", &false.to_value())?;
|
|
|
|
appsink.set_property("emit-signals", &false.to_value())?;
|
|
|
|
appsink.set_property("max-buffers", &1u32.to_value())?;
|
|
|
|
|
|
|
|
let caps = gst::Caps::builder("video/x-raw")
|
|
|
|
.features(&[&gst_gl::CAPS_FEATURE_MEMORY_GL_MEMORY])
|
|
|
|
.field("format", &gst_video::VideoFormat::Rgba.to_string())
|
|
|
|
.field("texture-target", &"2D")
|
|
|
|
.build();
|
2019-04-15 15:17:42 +00:00
|
|
|
appsink.set_caps(Some(&caps));
|
2018-10-18 10:25:14 +00:00
|
|
|
|
2019-03-22 17:39:15 +00:00
|
|
|
// get the glupload element to extract later the used context in it
|
|
|
|
let mut iter = sink.dynamic_cast::<gst::Bin>().unwrap().iterate_elements();
|
|
|
|
let glupload = loop {
|
|
|
|
match iter.next() {
|
|
|
|
Ok(Some(element)) => {
|
|
|
|
if "glupload" == element.get_factory().unwrap().get_name() {
|
|
|
|
break Some(element);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(gst::IteratorError::Resync) => iter.resync(),
|
|
|
|
_ => break None,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok((pipeline, appsink, glupload.unwrap()))
|
2018-10-18 10:25:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn gst_loop(bus: gst::Bus) -> Result<(), Error> {
|
|
|
|
use gst::MessageView;
|
|
|
|
|
2018-12-27 22:06:03 +00:00
|
|
|
for msg in bus.iter_timed(gst::CLOCK_TIME_NONE) {
|
2018-10-18 10:25:14 +00:00
|
|
|
match msg.view() {
|
|
|
|
MessageView::Eos(..) => break,
|
|
|
|
MessageView::Error(err) => {
|
|
|
|
Err(ErrorMessage {
|
|
|
|
src: msg
|
|
|
|
.get_src()
|
2018-12-09 16:09:20 +00:00
|
|
|
.map(|s| String::from(s.get_path_string()))
|
2018-10-18 10:25:14 +00:00
|
|
|
.unwrap_or_else(|| String::from("None")),
|
|
|
|
error: err.get_error().description().into(),
|
2018-12-09 16:09:20 +00:00
|
|
|
debug: Some(err.get_debug().unwrap().to_string()),
|
2018-10-18 10:25:14 +00:00
|
|
|
cause: err.get_error(),
|
|
|
|
})?;
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main_loop(mut app: App) -> Result<(), Error> {
|
|
|
|
println!(
|
|
|
|
"Pixel format of the window's GL context {:?}",
|
2019-03-12 07:27:50 +00:00
|
|
|
app.windowed_context.get_pixel_format()
|
2018-10-18 10:25:14 +00:00
|
|
|
);
|
|
|
|
|
2019-03-12 07:27:50 +00:00
|
|
|
let gl = load(&app.windowed_context.context());
|
2018-10-18 10:25:14 +00:00
|
|
|
|
|
|
|
let (bus_handler, receiver) = app.setup()?;
|
|
|
|
|
|
|
|
let mut curr_frame: Option<Arc<gst_video::VideoFrame<gst_video::video_frame::Readable>>> = None;
|
|
|
|
let mut running = true;
|
|
|
|
let events_loop = Arc::get_mut(&mut app.events_loop).unwrap();
|
2019-03-12 07:27:50 +00:00
|
|
|
let windowed_context = app.windowed_context.clone();
|
2019-03-22 17:39:15 +00:00
|
|
|
let mut gst_gl_context: Option<gst_gl::GLContext> = None;
|
|
|
|
|
2018-10-18 10:25:14 +00:00
|
|
|
while running {
|
2019-02-28 08:54:32 +00:00
|
|
|
#[allow(clippy::single_match)]
|
2018-10-18 10:25:14 +00:00
|
|
|
events_loop.poll_events(|event| match event {
|
|
|
|
glutin::Event::WindowEvent { event, .. } => match event {
|
|
|
|
glutin::WindowEvent::CloseRequested => running = false,
|
|
|
|
glutin::WindowEvent::Resized(logical_size) => {
|
2019-03-12 07:27:50 +00:00
|
|
|
let dpi_factor = windowed_context.get_hidpi_factor();
|
|
|
|
windowed_context.resize(logical_size.to_physical(dpi_factor));
|
2018-10-18 10:25:14 +00:00
|
|
|
gl.resize(logical_size.to_physical(dpi_factor));
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
});
|
|
|
|
|
|
|
|
// get the last frame in channel
|
|
|
|
while let Ok(sample) = receiver.try_recv() {
|
|
|
|
let buffer = sample.get_buffer().unwrap();
|
|
|
|
let info = sample
|
|
|
|
.get_caps()
|
2019-04-23 16:53:10 +00:00
|
|
|
.and_then(|caps| gst_video::VideoInfo::from_caps(caps))
|
2018-10-18 10:25:14 +00:00
|
|
|
.unwrap();
|
2019-03-22 17:39:15 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
if gst_gl_context.is_none() {
|
|
|
|
gst_gl_context = app
|
|
|
|
.glupload
|
|
|
|
.get_property("context")
|
|
|
|
.unwrap()
|
|
|
|
.get::<gst_gl::GLContext>();
|
|
|
|
}
|
|
|
|
|
2019-04-23 16:53:10 +00:00
|
|
|
let sync_meta = buffer.get_meta::<gst_gl::GLSyncMeta>().unwrap();
|
2019-03-22 17:39:15 +00:00
|
|
|
sync_meta.set_sync_point(gst_gl_context.as_ref().unwrap());
|
|
|
|
}
|
|
|
|
|
2019-04-23 16:53:10 +00:00
|
|
|
if let Ok(frame) =
|
|
|
|
gst_video::VideoFrame::from_buffer_readable_gl(buffer.to_owned(), &info)
|
|
|
|
{
|
2018-10-18 10:25:14 +00:00
|
|
|
curr_frame = Some(Arc::new(frame));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(frame) = curr_frame.clone() {
|
2019-03-22 17:39:15 +00:00
|
|
|
let sync_meta = frame.buffer().get_meta::<gst_gl::GLSyncMeta>().unwrap();
|
|
|
|
sync_meta.wait(&app.shared_context);
|
2018-10-18 10:25:14 +00:00
|
|
|
if let Some(texture) = frame.get_texture_id(0) {
|
|
|
|
gl.draw_frame(texture as gl::types::GLuint);
|
|
|
|
}
|
|
|
|
}
|
2019-03-12 07:27:50 +00:00
|
|
|
app.windowed_context.swap_buffers()?;
|
2018-10-18 10:25:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
app.pipeline.send_event(gst::Event::new_eos().build());
|
|
|
|
bus_handler.join().expect("Could join bus handler thread");
|
2019-01-08 16:13:37 +00:00
|
|
|
app.pipeline.set_state(gst::State::Null)?;
|
2018-10-18 10:25:14 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn example_main() {
|
|
|
|
match App::new().and_then(main_loop) {
|
|
|
|
Ok(r) => r,
|
|
|
|
Err(e) => eprintln!("Error! {}", e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
examples_common::run(example_main);
|
|
|
|
}
|