X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Multimedia.MediaPlayer%2FPlayer%2FMediaStreamSource.cs;h=2cb9624563f69db25ab4505bbc6b1c2c9d154361;hb=refs%2Ftags%2Fsubmit%2Ftizen%2F20170913.233020;hp=18e8873efd30d3ba9da2f8ed4713fc6231e2f90c;hpb=23c11ca1ad8b271c73e002dd7ca820bca97da3a2;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Multimedia.MediaPlayer/Player/MediaStreamSource.cs b/src/Tizen.Multimedia.MediaPlayer/Player/MediaStreamSource.cs index 18e8873..2cb9624 100644 --- a/src/Tizen.Multimedia.MediaPlayer/Player/MediaStreamSource.cs +++ b/src/Tizen.Multimedia.MediaPlayer/Player/MediaStreamSource.cs @@ -24,7 +24,7 @@ namespace Tizen.Multimedia { /// - /// Provides the ability to push packets as the source of + /// Provides the ability to push packets as the source of . /// /// The source must be set as a source to a player before pushing. /// @@ -91,7 +91,7 @@ namespace Tizen.Multimedia /// - /// Initialize a new instance of the MediaStreamSource class + /// Initializes a new instance of the MediaStreamSource class /// with the specified and . /// /// The for this source. @@ -120,7 +120,7 @@ namespace Tizen.Multimedia } /// - /// Initialize a new instance of the MediaStreamSource class with the specified . + /// Initializes a new instance of the MediaStreamSource class with the specified . /// /// The for this source. /// AAC is supported. @@ -139,9 +139,9 @@ namespace Tizen.Multimedia AudioConfiguration = CreateAudioConfiguration(audioMediaFormat); } /// - /// Initialize a new instance of the MediaStreamSource class with the specified . + /// Initializes a new instance of the MediaStreamSource class with the specified . /// - /// H.264 can is supported. + /// H.264 is supported. /// The for this source. /// is null. /// is not supported. @@ -159,33 +159,34 @@ namespace Tizen.Multimedia } /// - /// Gets the audio configuration or null if no AudioMediaFormat is specified in the constructor. + /// Gets the audio configuration, or null if no AudioMediaFormat is specified in the constructor. /// public MediaStreamConfiguration AudioConfiguration { get; } /// - /// Gets the video configuration or null if no VideoMediaFormat is specified in the constructor. + /// Gets the video configuration, or null if no VideoMediaFormat is specified in the constructor. /// public MediaStreamConfiguration VideoConfiguration { get; } /// /// Pushes elementary stream to decode audio or video. /// - /// This source must be set as a source to a player and the player must be in the , or state. + /// This source must be set as a source to a player and the player must be in the , + /// , or state. /// The to decode. /// /// This source is not set as a source to a player.\n /// -or-\n /// The player is not in the valid state. /// - /// packet is null. - /// packet has been disposed. + /// is null. + /// has been disposed of. /// /// is neither video nor audio type.\n /// -or-\n /// The format of packet is not matched with the specified format in the constructor. /// - /// the internal buffer reaches limits. + /// The internal buffer has reached its limits. /// /// /// @@ -288,7 +289,7 @@ namespace Tizen.Multimedia } /// - /// Gets the that this source is assigned to as a source or null if this source is not assigned. + /// Gets the that this source is assigned to as a source, or null if this source is not assigned. /// /// public Player Player => _player;