[MediaVision] Applied coding rules
authorTae-Young Chung <ty83.chung@samsung.com>
Mon, 2 Jan 2017 04:14:58 +0000 (13:14 +0900)
committerTae-Young Chung <ty83.chung@samsung.com>
Mon, 2 Jan 2017 04:21:57 +0000 (13:21 +0900)
1. Keyword space rule
2. Maintain the consistency between <param> tag and actual parameters
3. Write the <returns> tag if a method has return value
4. Write the closing brace, followed by a blank line
5. Closing parenthesis space rule

Change-Id: I79a30f6a690e4beef26247cd1419edfd802ad082
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
packaging/csapi-multimedia.spec
src/Tizen.Multimedia/MediaVision/BarcodeDetector.cs
src/Tizen.Multimedia/MediaVision/BarcodeGenerator.cs
src/Tizen.Multimedia/MediaVision/FaceDetector.cs
src/Tizen.Multimedia/MediaVision/FaceRecognitionModel.cs
src/Tizen.Multimedia/MediaVision/Image.cs

index d99b45e..4a03c0b 100644 (file)
@@ -1,6 +1,6 @@
 Name:       csapi-multimedia
 Summary:    Tizen Multimedia API for C#
-Version:    1.0.26
+Version:    1.0.27
 Release:    0
 Group:      Development/Libraries
 License:    Apache-2.0
index 2f91b15..113cd3c 100755 (executable)
@@ -96,7 +96,7 @@ namespace Tizen.Multimedia
                         tcsBarcodeList.TrySetException(new InvalidOperationException("Failed to set result"));
                     }
                 }
-                catch(Exception ex)
+                catch (Exception ex)
                 {
                     Log.Info(MediaVisionLog.Tag, "exception :" + ex.ToString());
                     tcsBarcodeList.TrySetException(ex);
index 01559c8..3ec2c38 100755 (executable)
@@ -34,8 +34,10 @@ namespace Tizen.Multimedia
         /// <param name="config">The configuration of the bar code generator engine</param>
         /// <param name="message">The message to be encoded in the barcode</param>
         /// <param name="type">Type of the barcode to be generated</param>
-        /// <param name="source">The media vision source object which will be used to fill by the buffer with generated image</param>
         /// <param name="qrConfig">The QrConfig object - required for QR codes only</param>
+        /// <returns>
+        /// <param name="source">The media vision source object which will be used to fill by the buffer with generated image</param>
+        /// </returns>
         /// <code>
         /// 
         /// </code>
index f9c9f6f..987b2a2 100755 (executable)
@@ -44,6 +44,7 @@ namespace Tizen.Multimedia
             {
                 throw new ArgumentException("Invalid source");
             }
+
             TaskCompletionSource<FaceDetectionResult> tcsResult = new TaskCompletionSource<FaceDetectionResult>();
             // Define native callback
             Interop.MediaVision.Face.MvFaceDetectedCallback faceDetectedCb = (IntPtr sourceHandle, IntPtr engineCfgHandle, IntPtr facesLocations, int numberOfFaces, IntPtr userData) =>
index 8fd9c72..682182c 100755 (executable)
@@ -115,8 +115,8 @@ namespace Tizen.Multimedia
         /// Adds face image example to be used for face recognition model learning with <see cref="Learn()"/>.
         /// </summary>
         /// <param name="source">Source that contains face image</param>
-        /// <param name="location">The rectangular location of the face image at the source image.</param>
         /// <param name="faceLabel">The label that identifies face for which example is adding. Specify the same labels for the face images of a single person when calling this method. Has to be unique for each face</param>
+        /// <param name="location">The rectangular location of the face image at the source image.</param>
         /// <code>
         /// 
         /// </code>
index 0d0200c..56f4104 100755 (executable)
@@ -64,7 +64,7 @@ namespace Tizen.Multimedia
             get
             {
                 int label = 0;
-                MediaVisionError ret = (MediaVisionError) Interop.MediaVision.Image.GetLabel(_imageObjectHandle, out label);
+                MediaVisionError ret = (MediaVisionError)Interop.MediaVision.Image.GetLabel(_imageObjectHandle, out label);
                 if (ret != MediaVisionError.None)
                 {
                     Tizen.Log.Error(MediaVisionLog.Tag, "Failed to get label");
@@ -88,7 +88,7 @@ namespace Tizen.Multimedia
             get
             {
                 double rate = 0;
-                MediaVisionError ret = (MediaVisionError) Interop.MediaVision.Image.GetRecognitionRate(_imageObjectHandle, out rate);
+                MediaVisionError ret = (MediaVisionError)Interop.MediaVision.Image.GetRecognitionRate(_imageObjectHandle, out rate);
                 if (ret != MediaVisionError.None)
                 {
                     Tizen.Log.Error(MediaVisionLog.Tag, "Failed to get recognition rate, error : " + ret);