gstreamer/ext/wpe/gstwpevideosrc.h
Thibault Saunier cb4f6c877e wpe: Move wpesrc to wpevideosrc and add a wrapper bin wpesrc
Currently the bin contains a single element but we are going
to implement audio support and expose extra pads for audio

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2252>
2021-05-19 13:41:15 +00:00

12 lines
335 B
C

#pragma once
#include <wpe/webkit.h>
#include <gst/gl/gl.h>
G_BEGIN_DECLS
#define GST_TYPE_WPE_VIDEO_SRC (gst_wpe_video_src_get_type ())
G_DECLARE_FINAL_TYPE (GstWpeVideoSrc, gst_wpe_video_src, GST, WPE_VIDEO_SRC, GstGLBaseSrc);
void gst_wpe_video_src_configure_web_view (GstWpeVideoSrc * src, WebKitWebView * webview);
G_END_DECLS