summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-03-17 23:52:31 +0000
committerTim-Philipp Müller <tim@centricular.com>2018-03-17 23:52:31 +0000
commitca4cbaef24ce9c045e9803b13d72b9926a22375f (patch)
tree9c3f7237cb35814027f70ea19c6bc17fbe05d9d8
parentec5c3cb714749a926bf3a93f017e3373768631e4 (diff)
downloadgstreamer-plugins-bad-ca4cbaef24ce9c045e9803b13d72b9926a22375f.tar.gz
wasapi: fix indentation
-rw-r--r--sys/wasapi/gstwasapiutil.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/wasapi/gstwasapiutil.c b/sys/wasapi/gstwasapiutil.c
index 016c415d3..c689f506f 100644
--- a/sys/wasapi/gstwasapiutil.c
+++ b/sys/wasapi/gstwasapiutil.c
@@ -73,6 +73,7 @@ const IID IID_IAudioRenderClient = { 0xf294acfc, 0x3146, 0x4483,
{0xa7, 0xbf, 0xad, 0xdc, 0xa7, 0xc2, 0x60, 0xe2}
};
+/* *INDENT-OFF* */
static struct
{
guint64 wasapi_pos;
@@ -100,6 +101,7 @@ static struct
{SPEAKER_TOP_BACK_CENTER, GST_AUDIO_CHANNEL_POSITION_TOP_REAR_CENTER},
{SPEAKER_TOP_BACK_RIGHT, GST_AUDIO_CHANNEL_POSITION_TOP_REAR_RIGHT}
};
+/* *INDENT-ON* */
static int windows_major_version = 0;
@@ -713,8 +715,7 @@ gst_wasapi_util_waveformatex_to_channel_mask (WAVEFORMATEXTENSIBLE * format,
/* Too many channels, have to assume that they are all non-positional */
if (nChannels > G_N_ELEMENTS (wasapi_to_gst_pos)) {
- GST_INFO ("Got too many (%i) channels, assuming non-positional",
- nChannels);
+ GST_INFO ("Got too many (%i) channels, assuming non-positional", nChannels);
goto out;
}