From: nam <36914158+aferin@users.noreply.github.com> Date: Fri, 2 Aug 2019 02:01:36 +0000 (+0900) Subject: [MediaPlayer] fix descriptions (#955) X-Git-Tag: submit/tizen/20190803.005203~1^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b5864e3b7d3aac4d4d6f768bfdff518a16d388d;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [MediaPlayer] fix descriptions (#955) --- diff --git a/src/Tizen.Multimedia.MediaPlayer/Player/Player.cs b/src/Tizen.Multimedia.MediaPlayer/Player/Player.cs index 8d35953a7..ac1b78f64 100644 --- a/src/Tizen.Multimedia.MediaPlayer/Player/Player.cs +++ b/src/Tizen.Multimedia.MediaPlayer/Player/Player.cs @@ -958,7 +958,7 @@ namespace Tizen.Multimedia /// /// Enable to decode an audio data for exporting PCM from a data. /// - /// The media format handle about required audio PCM specification. + /// The media format handle required to audio PCM specification. /// The format has to include , /// and . /// If the format is NULL, the original PCM format or platform default PCM format will be applied. diff --git a/src/Tizen.Multimedia.MediaPlayer/Player/PlayerEnums.cs b/src/Tizen.Multimedia.MediaPlayer/Player/PlayerEnums.cs index a611f1827..024f083ba 100644 --- a/src/Tizen.Multimedia.MediaPlayer/Player/PlayerEnums.cs +++ b/src/Tizen.Multimedia.MediaPlayer/Player/PlayerEnums.cs @@ -304,22 +304,22 @@ namespace Tizen.Multimedia public enum PlayerAudioExtractOption { /// - /// Sync with the playback clock and multichannel audio stream + /// Sync multi-channel audio stream with the playback clock. /// Default = 0x00, /// - /// No sync with the playback clock + /// No sync with the playback clock. /// NoSyncWithClock = 0x01, /// - /// Splits one interleaved multichannel audio stream into many mono audio streams + /// Splits one interleaved multi-channel audio stream into several mono audio streams. /// Deinterleave = 0x02, /// - /// 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. /// NoSyncAndDeinterleave = 0x03, }