mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
ges: Fix build with GCC 10
gcc-10 defaults to -fno-common, which exposes a symbol conflict, so use `static` correctly. Also we don't use `parent_extractable_iface` in `ges-uri-clip.c`. See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85678
This commit is contained in:
parent
f307d3d51b
commit
917eba54f7
2 changed files with 1 additions and 3 deletions
|
@ -47,8 +47,6 @@ static void ges_extractable_interface_init (GESExtractableInterface * iface);
|
|||
|
||||
#define parent_class ges_uri_clip_parent_class
|
||||
|
||||
GESExtractableInterface *parent_extractable_iface;
|
||||
|
||||
struct _GESUriClipPrivate
|
||||
{
|
||||
gchar *uri;
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
#include "ges-extractable.h"
|
||||
|
||||
#define parent_class ges_video_source_parent_class
|
||||
GESExtractableInterface *parent_extractable_iface = NULL;
|
||||
static GESExtractableInterface *parent_extractable_iface = NULL;
|
||||
|
||||
struct _GESVideoSourcePrivate
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue