Unify indentation of enums on vce.h 16/267216/2
authorSuyeon Hwang <stom.hwang@samsung.com>
Tue, 30 Nov 2021 02:06:53 +0000 (11:06 +0900)
committerSuyeon Hwang <stom.hwang@samsung.com>
Mon, 27 Dec 2021 07:15:24 +0000 (16:15 +0900)
Change-Id: I101f12cea06cfd55a5b1c75fc2cb91982a52a814
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
include/vce.h

index a504a94b8c96901844e9d1b16234bf2700422c47..e700059374fbc406540bb69e4d0bf9a224f47d5b 100644 (file)
@@ -34,18 +34,18 @@ extern "C" {
  * @since_tizen @if MOBILE 4.0 @elseif WEARABLE 5.0 @endif
  */
 typedef enum {
-       VCE_ERROR_NONE                  = TIZEN_ERROR_NONE,             /**< Successful */
-       VCE_ERROR_OUT_OF_MEMORY         = TIZEN_ERROR_OUT_OF_MEMORY,    /**< Out of Memory */
-       VCE_ERROR_IO_ERROR              = TIZEN_ERROR_IO_ERROR,         /**< I/O error */
-       VCE_ERROR_INVALID_PARAMETER     = TIZEN_ERROR_INVALID_PARAMETER,/**< Invalid parameter */
-       VCE_ERROR_OUT_OF_NETWORK        = TIZEN_ERROR_NETWORK_DOWN,     /**< Out of network */
-    VCE_ERROR_RECORDER_BUSY            = TIZEN_ERROR_RESOURCE_BUSY,/**< Busy resource */
-       VCE_ERROR_NOT_SUPPORTED         = TIZEN_ERROR_NOT_SUPPORTED,    /**< VC Engine NOT supported */
-       VCE_ERROR_INVALID_STATE         = TIZEN_ERROR_VOICE_CONTROL | 0x011, /**< Invalid state */
-       VCE_ERROR_INVALID_LANGUAGE      = TIZEN_ERROR_VOICE_CONTROL | 0x012, /**< Invalid language */
-       VCE_ERROR_OPERATION_FAILED      = TIZEN_ERROR_VOICE_CONTROL | 0x014, /**< Operation failed */
-    VCE_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED,        /**< Permission denied */
-       VCE_ERROR_NOT_SUPPORTED_FEATURE = TIZEN_ERROR_VOICE_CONTROL | 0x022, /**< Not supported feature of current engine */
+       VCE_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
+       VCE_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of Memory */
+       VCE_ERROR_IO_ERROR = TIZEN_ERROR_IO_ERROR, /**< I/O error */
+       VCE_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid parameter */
+       VCE_ERROR_OUT_OF_NETWORK = TIZEN_ERROR_NETWORK_DOWN, /**< Out of network */
+       VCE_ERROR_RECORDER_BUSY = TIZEN_ERROR_RESOURCE_BUSY, /**< Busy resource */
+       VCE_ERROR_NOT_SUPPORTED = TIZEN_ERROR_NOT_SUPPORTED, /**< VC Engine NOT supported */
+       VCE_ERROR_INVALID_STATE = TIZEN_ERROR_VOICE_CONTROL | 0x011, /**< Invalid state */
+       VCE_ERROR_INVALID_LANGUAGE = TIZEN_ERROR_VOICE_CONTROL | 0x012, /**< Invalid language */
+       VCE_ERROR_OPERATION_FAILED = TIZEN_ERROR_VOICE_CONTROL | 0x014, /**< Operation failed */
+       VCE_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED, /**< Permission denied */
+       VCE_ERROR_NOT_SUPPORTED_FEATURE = TIZEN_ERROR_VOICE_CONTROL | 0x022, /**< Not supported feature of current engine */
        VCE_ERROR_TTS_FAILED = TIZEN_ERROR_VOICE_CONTROL | 0x024 /**< TTS operation failed (Since 7.0) */
 } vce_error_e;
 
@@ -54,8 +54,8 @@ typedef enum {
  * @since_tizen @if MOBILE 4.0 @elseif WEARABLE 5.0 @endif
  */
 typedef enum {
-       VCE_AUDIO_TYPE_PCM_S16_LE = 0,  /**< Signed 16bit audio type, Little endian */
-       VCE_AUDIO_TYPE_PCM_U8           /**< Unsigned 8bit audio type */
+       VCE_AUDIO_TYPE_PCM_S16_LE = 0, /**< Signed 16bit audio type, Little endian */
+       VCE_AUDIO_TYPE_PCM_U8 /**< Unsigned 8bit audio type */
 } vce_audio_type_e;
 
 /**
@@ -63,9 +63,9 @@ typedef enum {
  * @since_tizen @if MOBILE 4.0 @elseif WEARABLE 5.0 @endif
  */
 typedef enum {
-       VCE_RESULT_EVENT_SUCCESS = 0,           /**< Event when the recognition full result is ready  */
-       VCE_RESULT_EVENT_REJECTED,                      /**< Event when the recognition result is rejected */
-       VCE_RESULT_EVENT_ERROR                          /**< Event when the recognition has failed */
+       VCE_RESULT_EVENT_SUCCESS = 0, /**< Event when the recognition full result is ready  */
+       VCE_RESULT_EVENT_REJECTED, /**< Event when the recognition result is rejected */
+       VCE_RESULT_EVENT_ERROR /**< Event when the recognition has failed */
 } vce_result_event_e;
 
 /**
@@ -73,13 +73,13 @@ typedef enum {
  * @since_tizen @if MOBILE 4.0 @elseif WEARABLE 5.0 @endif
  */
 typedef enum {
-       VCE_COMMAND_FORMAT_FIXED = 0,                   /**< Fixed command */
-       VCE_COMMAND_FORMAT_FIXED_AND_VFIXED,    /**< Fixed command + variable-fixed command */
-       VCE_COMMAND_FORMAT_VFIXED_AND_FIXED,    /**< variable-fixed command + Fixed command */
-       VCE_COMMAND_FORMAT_FIXED_AND_NONFIXED,  /**< Fixed command + Non-fixed command */
-       VCE_COMMAND_FORMAT_NONFIXED_AND_FIXED,  /**< Non-fixed command + Fixed command */
-    VCE_COMMAND_FORMAT_ACTION,              /**< Action command */
-    VCE_COMMAND_FORMAT_PARTIAL              /**< Partial matched command */
+       VCE_COMMAND_FORMAT_FIXED = 0, /**< Fixed command */
+       VCE_COMMAND_FORMAT_FIXED_AND_VFIXED, /**< Fixed command + variable-fixed command */
+       VCE_COMMAND_FORMAT_VFIXED_AND_FIXED, /**< variable-fixed command + Fixed command */
+       VCE_COMMAND_FORMAT_FIXED_AND_NONFIXED, /**< Fixed command + Non-fixed command */
+       VCE_COMMAND_FORMAT_NONFIXED_AND_FIXED, /**< Non-fixed command + Fixed command */
+       VCE_COMMAND_FORMAT_ACTION, /**< Action command */
+       VCE_COMMAND_FORMAT_PARTIAL /**< Partial matched command */
 } vce_command_format_e;
 
 /**
@@ -87,9 +87,9 @@ typedef enum {
  * @since_tizen @if MOBILE 4.0 @elseif WEARABLE 5.0 @endif
  */
 typedef enum {
-    VCE_SPEECH_DETECT_NONE = 0,        /**< No event */
-    VCE_SPEECH_DETECT_BEGIN,   /**< Begin of speech detected */
-    VCE_SPEECH_DETECT_END,             /**< End of speech detected */
+       VCE_SPEECH_DETECT_NONE = 0, /**< No event */
+       VCE_SPEECH_DETECT_BEGIN, /**< Begin of speech detected */
+       VCE_SPEECH_DETECT_END, /**< End of speech detected */
 } vce_speech_detect_e;
 
 /**
@@ -97,9 +97,9 @@ typedef enum {
  * @since_tizen @if MOBILE 4.0 @elseif WEARABLE 5.0 @endif
  */
 typedef enum {
-    VCE_ASR_RESULT_EVENT_FINAL_RESULT = 0, /**< Event when the ASR result is last data or ASR result is only one result */
-    VCE_ASR_RESULT_EVENT_PARTIAL_RESULT,   /**< Event when the ASR result exist, not first and not last */
-    VCE_ASR_RESULT_EVENT_ERROR             /**< Event when the ASR result is failed */
+       VCE_ASR_RESULT_EVENT_FINAL_RESULT = 0, /**< Event when the ASR result is last data or ASR result is only one result */
+       VCE_ASR_RESULT_EVENT_PARTIAL_RESULT, /**< Event when the ASR result exist, not first and not last */
+       VCE_ASR_RESULT_EVENT_ERROR /**< Event when the ASR result is failed */
 } vce_asr_result_event_e;
 
 /**
@@ -107,8 +107,8 @@ typedef enum {
  * @since_tizen @if MOBILE 4.0 @elseif WEARABLE 5.0 @endif
  */
 typedef enum {
-       VCE_AUDIO_CHANNEL_MONO = 0,     /**< 1 channel, mono */
-       VCE_AUDIO_CHANNEL_STEREO = 1    /**< 2 channels, stereo */
+       VCE_AUDIO_CHANNEL_MONO = 0, /**< 1 channel, mono */
+       VCE_AUDIO_CHANNEL_STEREO = 1 /**< 2 channels, stereo */
 } vce_audio_channel_e;
 
 /**
@@ -116,10 +116,10 @@ typedef enum {
  * @since_tizen @if MOBILE 4.0 @elseif WEARABLE 5.0 @endif
  */
 typedef enum {
-       VCE_FEEDBACK_EVENT_FAIL = -1,    /**< Failed */
-       VCE_FEEDBACK_EVENT_START = 1,    /**< Start event */
+       VCE_FEEDBACK_EVENT_FAIL = -1, /**< Failed */
+       VCE_FEEDBACK_EVENT_START = 1, /**< Start event */
        VCE_FEEDBACK_EVENT_CONTINUE = 2, /**< Continue event */
-       VCE_FEEDBACK_EVENT_FINISH = 3    /**< Finish event */
+       VCE_FEEDBACK_EVENT_FINISH = 3 /**< Finish event */
 } vce_feedback_event_e;
 
 /**