mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 09:29:42 +00:00
12 lines
335 B
C
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
|