From 031c4516abd46001419afe26d58f834bc63fa4a2 Mon Sep 17 00:00:00 2001 From: hsgwon Date: Mon, 13 May 2019 11:04:52 +0900 Subject: [PATCH] [MediaController] Fix description (#829) --- .../MediaController/MediaControlMetadata.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Tizen.Multimedia.Remoting/MediaController/MediaControlMetadata.cs b/src/Tizen.Multimedia.Remoting/MediaController/MediaControlMetadata.cs index 2ab0f8cf8..95869e6c7 100644 --- a/src/Tizen.Multimedia.Remoting/MediaController/MediaControlMetadata.cs +++ b/src/Tizen.Multimedia.Remoting/MediaController/MediaControlMetadata.cs @@ -159,9 +159,9 @@ namespace Tizen.Multimedia.Remoting set => EncodedResolution = EncodeResolution(value.Width, value.Height); } - // Native CAPI used only encoded string to gets or sets Season, Episode, Resolution. - // But encoded string is not useful for user, so we don't offer as it is. - // It'll be used internally. + // Developers who use Tizen Native API must encode strings to set or get metadata of media + // such as season, episode, and resolution. It is inconvenient. + // TizenFX supports for using normal strings and using encoded strings internally. internal string EncodedSeason { get; private set; } internal string EncodedEpisode { get; private set; } @@ -243,7 +243,7 @@ namespace Tizen.Multimedia.Remoting /// /// Initializes a new instance of the class. /// - /// The number of this video of all series. + /// The order of this video in entire series. /// The title. /// 6 public SeriesInformation(int number, string title) @@ -253,7 +253,7 @@ namespace Tizen.Multimedia.Remoting } /// - /// Gets or sets the number of this video of all series. + /// Gets or sets the order of this video in entire series. /// /// 6 public int Number { get; } -- 2.34.1