mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
decklink: Fix indention once again
This commit is contained in:
parent
ad6b8d0a3d
commit
65119ae8b4
3 changed files with 3 additions and 6 deletions
|
@ -405,8 +405,7 @@ private:
|
||||||
gint m_refcount;
|
gint m_refcount;
|
||||||
public:
|
public:
|
||||||
GStreamerDecklinkInputCallback (GstDecklinkInput * input)
|
GStreamerDecklinkInputCallback (GstDecklinkInput * input)
|
||||||
: IDeckLinkInputCallback (),
|
: IDeckLinkInputCallback (), m_refcount (1)
|
||||||
m_refcount (1)
|
|
||||||
{
|
{
|
||||||
m_input = input;
|
m_input = input;
|
||||||
g_mutex_init (&m_mutex);
|
g_mutex_init (&m_mutex);
|
||||||
|
|
|
@ -140,8 +140,7 @@ class GStreamerAudioOutputCallback:public IDeckLinkAudioOutputCallback
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
GStreamerAudioOutputCallback (GstDecklinkAudioSinkRingBuffer * ringbuffer)
|
GStreamerAudioOutputCallback (GstDecklinkAudioSinkRingBuffer * ringbuffer)
|
||||||
: IDeckLinkAudioOutputCallback (),
|
:IDeckLinkAudioOutputCallback (), m_refcount (1)
|
||||||
m_refcount (1)
|
|
||||||
{
|
{
|
||||||
m_ringbuffer =
|
m_ringbuffer =
|
||||||
GST_DECKLINK_AUDIO_SINK_RING_BUFFER_CAST (gst_object_ref (ringbuffer));
|
GST_DECKLINK_AUDIO_SINK_RING_BUFFER_CAST (gst_object_ref (ringbuffer));
|
||||||
|
|
|
@ -343,8 +343,7 @@ class GStreamerVideoOutputCallback:public IDeckLinkVideoOutputCallback
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
GStreamerVideoOutputCallback (GstDecklinkVideoSink * sink)
|
GStreamerVideoOutputCallback (GstDecklinkVideoSink * sink)
|
||||||
: IDeckLinkVideoOutputCallback (),
|
:IDeckLinkVideoOutputCallback (), m_refcount (1)
|
||||||
m_refcount (1)
|
|
||||||
{
|
{
|
||||||
m_sink = GST_DECKLINK_VIDEO_SINK_CAST (gst_object_ref (sink));
|
m_sink = GST_DECKLINK_VIDEO_SINK_CAST (gst_object_ref (sink));
|
||||||
g_mutex_init (&m_mutex);
|
g_mutex_init (&m_mutex);
|
||||||
|
|
Loading…
Reference in a new issue