[MediaTool] fixed documentation issues
authorSejun Park <sejun79.park@samsung.com>
Tue, 30 May 2017 04:11:05 +0000 (13:11 +0900)
committerSejun Park <sejun79.park@samsung.com>
Tue, 30 May 2017 04:52:33 +0000 (13:52 +0900)
Change-Id: I454ad26fd59944d065ad075e01c42bcc74d21e34

src/Tizen.Multimedia/MediaTool/MediaFormat.cs
src/Tizen.Multimedia/MediaTool/MediaFormatMimeType.cs [changed mode: 0644->0755]
src/Tizen.Multimedia/MediaTool/MediaFormatTextType.cs [changed mode: 0644->0755]

index 13fc270..d4225cd 100755 (executable)
@@ -243,7 +243,6 @@ namespace Tizen.Multimedia
         /// </summary>
         /// <param name="mimeType">The mime type of the format.</param>
         /// <param name="size">The video size of the format.</param>
-        /// <param name="height">The height value of the format</param>
         /// <param name="frameRate">The frame rate of the format.</param>
         /// <exception cref="ArgumentException">mimeType is invalid(i.e. undefined value).</exception>
         /// <exception cref="ArgumentOutOfRangeException">width, height or frameRate is less than zero.</exception>
@@ -473,6 +472,7 @@ namespace Tizen.Multimedia
         /// <param name="sampleRate">The sample rate value of the format.</param>
         /// <param name="bit">The bit value of the format.</param>
         /// <param name="bitRate">The bit rate value of the format.</param>
+        /// <param name="aacType">The AAC bitstream format(ADIF or ADTS).</param>
         /// <exception cref="ArgumentException">
         ///     mimeType or aacType is invalid(i.e. undefined value).
         ///     <para>- or -</para>
old mode 100644 (file)
new mode 100755 (executable)
index 4518f26..b96213f
@@ -58,6 +58,9 @@ namespace Tizen.Multimedia
         Raw = 0x20000000,
     }
 
+    /// <summary>
+    /// Enumeration for audio mime type
+    /// </summary>
     public enum MediaFormatAudioMimeType
     {
         /// <summary>
@@ -207,7 +210,7 @@ namespace Tizen.Multimedia
     }
 
     /// <summary>
-    /// Enumeration for media format MIME type
+    /// Enumeration for video mime type
     /// </summary>
     public enum MediaFormatVideoMimeType
     {
@@ -452,6 +455,9 @@ namespace Tizen.Multimedia
         //NativeVideo = (MediaFormatType.Video | MediaFormatDataType.Raw | 0x7000),
     }
 
+    /// <summary>
+    /// Enumeration for container mime type
+    /// </summary>
     public enum MediaFormatContainerMimeType
     {
         /// <summary>
@@ -489,8 +495,6 @@ namespace Tizen.Multimedia
         /// </summary>
         ThreeGP = (MediaFormatType.Container | 0x3070),
 
-
-
         /// <summary>
         /// WAV container, Audio
         /// </summary>
@@ -512,6 +516,9 @@ namespace Tizen.Multimedia
         AacAdif = (MediaFormatType.Container | 0x4031),
     }
 
+    /// <summary>
+    /// Enumeration for text mime type
+    /// </summary>
     public enum MediaFormatTextMimeType
     {
         /// <summary>
old mode 100644 (file)
new mode 100755 (executable)
index d816e88..38d3a5a
@@ -32,7 +32,7 @@ namespace Tizen.Multimedia
         MP4,
 
         /// <summary>
-        /// The 3gp type.
+        /// The 3gpp type.
         /// </summary>
         ThreeGpp
     }