uncrustify as demanded.
[oweals/gnunet.git] / src / conversation / microphone.c
index 57588f05a9ace38f1b271b2c2ed04a0b794d5242..01f8adb1e2171d87e5a5415007c338def74d7a9d 100644 (file)
@@ -1,19 +1,19 @@
 /*
-  This file is part of GNUnet
-  Copyright (C) 2013 GNUnet e.V.
-
-  GNUnet is free software: you can redistribute it and/or modify it
-  under the terms of the GNU Affero General Public License as published
-  by the Free Software Foundation, either version 3 of the License,
-  or (at your option) any later version.
-
-  GNUnet is distributed in the hope that it will be useful, but
-  WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-  Affero General Public License for more details.
-  You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+   This file is part of GNUnet
+   Copyright (C) 2013 GNUnet e.V.
+
+   GNUnet is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Affero General Public License as published
+   by the Free Software Foundation, either version 3 of the License,
+   or (at your option) any later version.
+
+   GNUnet is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Affero General Public License for more details.
+
+   You should have received a copy of the GNU Affero General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
      SPDX-License-Identifier: AGPL3.0-or-later
  */
@@ -34,9 +34,7 @@
 /**
  * Internal data structures for the microphone.
  */
-struct Microphone
-{
-
+struct Microphone {
   /**
    * Our configuration.
    */
@@ -56,7 +54,6 @@ struct Microphone
    * Closure for @e rdc.
    */
   void *rdc_cls;
-
 };
 
 
@@ -70,21 +67,21 @@ struct Microphone
  *    #GNUNET_SYSERR to stop further processing with error
  */
 static int
-process_record_messages (void *cls,
-                        const struct GNUNET_MessageHeader *msg)
+process_record_messages(void *cls,
+                        const struct GNUNET_MessageHeader *msg)
 {
   struct Microphone *mic = cls;
   const struct AudioMessage *am;
 
-  if (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_CONVERSATION_AUDIO)
-  {
-    GNUNET_break (0);
-    return GNUNET_SYSERR;
-  }
-  am = (const struct AudioMessage *) msg;
-  mic->rdc (mic->rdc_cls,
-           ntohs (msg->size) - sizeof (struct AudioMessage),
-           &am[1]);
+  if (ntohs(msg->type) != GNUNET_MESSAGE_TYPE_CONVERSATION_AUDIO)
+    {
+      GNUNET_break(0);
+      return GNUNET_SYSERR;
+    }
+  am = (const struct AudioMessage *)msg;
+  mic->rdc(mic->rdc_cls,
+           ntohs(msg->size) - sizeof(struct AudioMessage),
+           &am[1]);
   return GNUNET_OK;
 }
 
@@ -97,9 +94,9 @@ process_record_messages (void *cls,
  * @param rdc_cls closure for @a dc
  */
 static int
-enable (void *cls,
-       GNUNET_MICROPHONE_RecordedDataCallback rdc,
-       void *rdc_cls)
+enable(void *cls,
+       GNUNET_MICROPHONE_RecordedDataCallback rdc,
+       void *rdc_cls)
 {
   struct Microphone *mic = cls;
   static char * const record_helper_argv[] =
@@ -110,17 +107,17 @@ enable (void *cls,
 
   mic->rdc = rdc;
   mic->rdc_cls = rdc_cls;
-  mic->record_helper = GNUNET_HELPER_start (GNUNET_NO,
-                                           "gnunet-helper-audio-record",
-                                           record_helper_argv,
-                                           &process_record_messages,
-                                           NULL, mic);
+  mic->record_helper = GNUNET_HELPER_start(GNUNET_NO,
+                                           "gnunet-helper-audio-record",
+                                           record_helper_argv,
+                                           &process_record_messages,
+                                           NULL, mic);
   if (NULL == mic->record_helper)
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-               _("Could not start record audio helper\n"));
-    return GNUNET_SYSERR;
-  }
+    {
+      GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
+                 _("Could not start record audio helper\n"));
+      return GNUNET_SYSERR;
+    }
   return GNUNET_OK;
 }
 
@@ -131,18 +128,18 @@ enable (void *cls,
  * @param cls clsoure
  */
 static void
-disable (void *cls)
+disable(void *cls)
 {
   struct Microphone *mic = cls;
 
   if (NULL == mic->record_helper)
-  {
-    GNUNET_break (0);
-    return;
-  }
-  GNUNET_break (GNUNET_OK ==
-               GNUNET_HELPER_kill (mic->record_helper, GNUNET_NO));
-  GNUNET_HELPER_destroy (mic->record_helper);
+    {
+      GNUNET_break(0);
+      return;
+    }
+  GNUNET_break(GNUNET_OK ==
+               GNUNET_HELPER_kill(mic->record_helper, GNUNET_NO));
+  GNUNET_HELPER_destroy(mic->record_helper);
   mic->record_helper = NULL;
 }
 
@@ -153,12 +150,12 @@ disable (void *cls)
  * @param cls clsoure
  */
 static void
-destroy (void *cls)
+destroy(void *cls)
 {
   struct Microphone *mic = cls;
 
   if (NULL != mic->record_helper)
-    disable (mic);
+    disable(mic);
 }
 
 
@@ -170,14 +167,14 @@ destroy (void *cls)
  * @return NULL on error
  */
 struct GNUNET_MICROPHONE_Handle *
-GNUNET_MICROPHONE_create_from_hardware (const struct GNUNET_CONFIGURATION_Handle *cfg)
+GNUNET_MICROPHONE_create_from_hardware(const struct GNUNET_CONFIGURATION_Handle *cfg)
 {
   struct GNUNET_MICROPHONE_Handle *microphone;
   struct Microphone *mic;
 
-  mic = GNUNET_new (struct Microphone);
+  mic = GNUNET_new(struct Microphone);
   mic->cfg = cfg;
-  microphone = GNUNET_new (struct GNUNET_MICROPHONE_Handle);
+  microphone = GNUNET_new(struct GNUNET_MICROPHONE_Handle);
   microphone->cls = mic;
   microphone->enable_microphone = &enable;
   microphone->disable_microphone = &disable;
@@ -192,10 +189,10 @@ GNUNET_MICROPHONE_create_from_hardware (const struct GNUNET_CONFIGURATION_Handle
  * @param microphone microphone to destroy
  */
 void
-GNUNET_MICROPHONE_destroy (struct GNUNET_MICROPHONE_Handle *microphone)
+GNUNET_MICROPHONE_destroy(struct GNUNET_MICROPHONE_Handle *microphone)
 {
-  microphone->destroy_microphone (microphone->cls);
-  GNUNET_free (microphone);
+  microphone->destroy_microphone(microphone->cls);
+  GNUNET_free(microphone);
 }
 
 /* end of microphone.c */