decklink: Fix indention once again

This commit is contained in:
Sebastian Dröge 2015-01-13 19:55:37 +01:00
parent ad6b8d0a3d
commit 65119ae8b4
3 changed files with 3 additions and 6 deletions

View file

@ -405,8 +405,7 @@ private:
gint m_refcount;
public:
GStreamerDecklinkInputCallback (GstDecklinkInput * input)
: IDeckLinkInputCallback (),
m_refcount (1)
: IDeckLinkInputCallback (), m_refcount (1)
{
m_input = input;
g_mutex_init (&m_mutex);

View file

@ -140,8 +140,7 @@ class GStreamerAudioOutputCallback:public IDeckLinkAudioOutputCallback
{
public:
GStreamerAudioOutputCallback (GstDecklinkAudioSinkRingBuffer * ringbuffer)
: IDeckLinkAudioOutputCallback (),
m_refcount (1)
:IDeckLinkAudioOutputCallback (), m_refcount (1)
{
m_ringbuffer =
GST_DECKLINK_AUDIO_SINK_RING_BUFFER_CAST (gst_object_ref (ringbuffer));

View file

@ -343,8 +343,7 @@ class GStreamerVideoOutputCallback:public IDeckLinkVideoOutputCallback
{
public:
GStreamerVideoOutputCallback (GstDecklinkVideoSink * sink)
: IDeckLinkVideoOutputCallback (),
m_refcount (1)
:IDeckLinkVideoOutputCallback (), m_refcount (1)
{
m_sink = GST_DECKLINK_VIDEO_SINK_CAST (gst_object_ref (sink));
g_mutex_init (&m_mutex);