[MediaPlayer] fix descriptions (#955)
authornam <36914158+aferin@users.noreply.github.com>
Fri, 2 Aug 2019 02:01:36 +0000 (11:01 +0900)
committerGitHub <noreply@github.com>
Fri, 2 Aug 2019 02:01:36 +0000 (11:01 +0900)
src/Tizen.Multimedia.MediaPlayer/Player/Player.cs
src/Tizen.Multimedia.MediaPlayer/Player/PlayerEnums.cs

index 8d35953..ac1b78f 100644 (file)
@@ -958,7 +958,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Enable to decode an audio data for exporting PCM from a data.
         /// </summary>
-        /// <param name="format">The media format handle about required audio PCM specification.
+        /// <param name="format">The media format handle required to audio PCM specification.
         /// The format has to include <see cref="AudioMediaFormat.MimeType"/>,
         /// <see cref="AudioMediaFormat.Channel"/> and <see cref="AudioMediaFormat.SampleRate"/>.
         /// If the format is NULL, the original PCM format or platform default PCM format will be applied.</param>
index a611f18..024f083 100644 (file)
@@ -304,22 +304,22 @@ namespace Tizen.Multimedia
     public enum PlayerAudioExtractOption
     {
         /// <summary>
-        /// Sync with the playback clock and multichannel audio stream
+        /// Sync multi-channel audio stream with the playback clock.
         /// </summary>
         Default = 0x00,
 
         /// <summary>
-        /// No sync with the playback clock
+        /// No sync with the playback clock.
         /// </summary>
         NoSyncWithClock = 0x01,
 
         /// <summary>
-        /// Splits one interleaved multichannel audio stream into many mono audio streams
+        /// Splits one interleaved multi-channel audio stream into several mono audio streams.
         /// </summary>
         Deinterleave = 0x02,
 
         /// <summary>
-        /// No sync with clock and splits into mono streams
+        /// Doesn't sync with clock and doesn't split multi-channel audio stream into several mono audio streams.
         /// </summary>
         NoSyncAndDeinterleave = 0x03,
     }