mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
decklink: Fix indention
This commit is contained in:
parent
afc392c47b
commit
0122a9d1b6
1 changed files with 3 additions and 2 deletions
|
@ -235,7 +235,7 @@ struct _GstDecklinkClockClass
|
||||||
};
|
};
|
||||||
|
|
||||||
GType gst_decklink_clock_get_type (void);
|
GType gst_decklink_clock_get_type (void);
|
||||||
static GstClock * gst_decklink_clock_new (const gchar * name);
|
static GstClock *gst_decklink_clock_new (const gchar * name);
|
||||||
|
|
||||||
typedef struct _Device Device;
|
typedef struct _Device Device;
|
||||||
struct _Device
|
struct _Device
|
||||||
|
@ -434,7 +434,8 @@ init_devices (gpointer data)
|
||||||
GST_WARNING ("selected device does not have output interface");
|
GST_WARNING ("selected device does not have output interface");
|
||||||
} else {
|
} else {
|
||||||
devices[i].output.device = decklink;
|
devices[i].output.device = decklink;
|
||||||
devices[i].output.clock = gst_decklink_clock_new ("GstDecklinkOutputClock");
|
devices[i].output.clock =
|
||||||
|
gst_decklink_clock_new ("GstDecklinkOutputClock");
|
||||||
GST_DECKLINK_CLOCK_CAST (devices[i].output.clock)->output =
|
GST_DECKLINK_CLOCK_CAST (devices[i].output.clock)->output =
|
||||||
devices[i].output.output;
|
devices[i].output.output;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue