mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +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 struct _GstValidateAction
|
||||
struct _GstValidateAction
|
||||
{
|
||||
const gchar *type;
|
||||
const gchar *name;
|
||||
guint action_number;
|
||||
GstClockTime playback_time;
|
||||
GstStructure *structure;
|
||||
} GstValidateAction;
|
||||
};
|
||||
|
||||
struct _GstValidateScenarioClass
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue