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
@ -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…
x
Reference in New Issue
Block a user