From b433134d2f2bce7777fc6d0be7bb75e554767aaa Mon Sep 17 00:00:00 2001 From: Haesu Gwon Date: Mon, 7 Feb 2022 10:48:46 +0900 Subject: [PATCH] [WebRTC] Add new MediaFileSource APIs (#3917) --- src/Tizen.Multimedia.Remoting/WebRTC/MediaFileSource.cs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/Tizen.Multimedia.Remoting/WebRTC/MediaFileSource.cs b/src/Tizen.Multimedia.Remoting/WebRTC/MediaFileSource.cs index 10933f9..9698754 100755 --- a/src/Tizen.Multimedia.Remoting/WebRTC/MediaFileSource.cs +++ b/src/Tizen.Multimedia.Remoting/WebRTC/MediaFileSource.cs @@ -15,23 +15,21 @@ */ using System; -using System.ComponentModel; using System.Diagnostics; using NativeWebRTC = Interop.NativeWebRTC; namespace Tizen.Multimedia.Remoting { /// - /// Represents a file source. + /// Represents a media source with contents read from a file. /// /// - /// The media storage privilege(http://tizen.org/privilege/mediastorage) is required.
- /// The external storage privilege(http://tizen.org/privilege/externalstorage) is required. + /// Depending on where the source file is located either the media storage privilege (http://tizen.org/privilege/mediastorage) is required or
+ /// the external storage privilege(http://tizen.org/privilege/externalstorage) is required. ///
/// /// - /// 9 - [EditorBrowsable(EditorBrowsableState.Never)] + /// 10 public sealed class MediaFileSource : MediaSource { private string _path; @@ -42,8 +40,7 @@ namespace Tizen.Multimedia.Remoting /// The of file source. /// The file path. /// is null. - /// 9 - [EditorBrowsable(EditorBrowsableState.Never)] + /// 10 public MediaFileSource(MediaType type, string path) : base(type) { _path = path ?? throw new ArgumentNullException(nameof(path), "path is null"); -- 2.7.4