modify cpp files for coding convention 38/65738/1 accepted/tizen/common/20160414.142809 accepted/tizen/ivi/20160414.092229 accepted/tizen/mobile/20160414.092256 accepted/tizen/tv/20160414.092212 accepted/tizen/wearable/20160414.092215 submit/tizen/20160414.060217
authorMok Jeongho <jho.mok@samsung.com>
Tue, 12 Apr 2016 08:42:12 +0000 (17:42 +0900)
committerMok Jeongho <jho.mok@samsung.com>
Tue, 12 Apr 2016 08:42:12 +0000 (17:42 +0900)
[Version] 0.3.29
[Profile] Common
[Issue Type] Coding Convention

Change-Id: I91d0ea5981ba6cd50d886aaea39076317ac28bd9

include/audio_io.h
include/cpp_audio_io.h
packaging/capi-media-audio-io.spec
src/cpp/CAudioSessionHandler.cpp
src/cpp/cpp_audio_io.cpp

index d99efe7..974be19 100644 (file)
@@ -22,8 +22,7 @@
 #include <sound_manager.h>
 
 #ifdef __cplusplus
-extern "C"
-{
+extern "C" {
 #endif
 
 /**
index fdaa8e7..35c8349 100644 (file)
@@ -23,8 +23,7 @@
 #ifdef __cplusplus
 
 
-extern "C"
-{
+extern "C" {
 #endif
 
 int cpp_audio_in_create(int sample_rate, audio_channel_e channel, audio_sample_type_e type, audio_in_h *input);
index 5f2cc6b..939fbaa 100644 (file)
@@ -1,6 +1,6 @@
 Name:           capi-media-audio-io
 Summary:        An Audio Input & Audio Output library in Tizen Native API
-Version:        0.3.28
+Version:        0.3.29
 Release:        0
 Group:          Multimedia/API
 License:        Apache-2.0
index 7895e31..9422051 100644 (file)
@@ -473,8 +473,7 @@ void CAudioSessionHandler::disableSessionHandler() throw(CAudioError) {
 IAudioSessionEventListener::EInterruptCode IAudioSessionEventListener::convertInterruptedCode(int code, const char *reason_for_change) {
     EInterruptCode e = EInterruptCode::INTERRUPT_COMPLETED;
 
-    switch (code)
-    {
+    switch (code) {
     case FOCUS_IS_ACQUIRED:
         e = EInterruptCode::INTERRUPT_COMPLETED;
         break;
index 3442454..8bc1f83 100644 (file)
@@ -94,8 +94,7 @@ static audio_io_error_e __convert_CAudioError(CAudioError& error) {
     audio_io_error_e    ret = AUDIO_IO_ERROR_NONE;
     CAudioError::EError err = error.getError();
 
-    switch (err)
-    {
+    switch (err) {
     case CAudioError::EError::ERROR_NONE:
         ret = AUDIO_IO_ERROR_NONE;
         break;