mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 11:15:31 +00:00
gst-validate-scenario: Only typedef the struct once
Some gcc versions don't like the typedef being done twice
This commit is contained in:
parent
c011ec4dd4
commit
75e1f5040a
1 changed files with 2 additions and 2 deletions
|
@ -43,14 +43,14 @@ typedef struct _GstValidateAction GstValidateAction;
|
||||||
|
|
||||||
typedef gboolean (*GstValidateExecuteAction) (GstValidateScenario * scenario, GstValidateAction * action);
|
typedef gboolean (*GstValidateExecuteAction) (GstValidateScenario * scenario, GstValidateAction * action);
|
||||||
|
|
||||||
typedef struct _GstValidateAction
|
struct _GstValidateAction
|
||||||
{
|
{
|
||||||
const gchar *type;
|
const gchar *type;
|
||||||
const gchar *name;
|
const gchar *name;
|
||||||
guint action_number;
|
guint action_number;
|
||||||
GstClockTime playback_time;
|
GstClockTime playback_time;
|
||||||
GstStructure *structure;
|
GstStructure *structure;
|
||||||
} GstValidateAction;
|
};
|
||||||
|
|
||||||
struct _GstValidateScenarioClass
|
struct _GstValidateScenarioClass
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue