Merge "Added Rotation and Flip enums for common use." into tizen
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.MediaPlayer / Player / PlayerEnums.cs
index 9ebdcf6..18ad88e 100644 (file)
@@ -25,25 +25,112 @@ namespace Tizen.Multimedia
     /// <seealso cref="PlayerErrorOccurredEventArgs"/>
     public enum PlayerError
     {
+        /// <summary>
+        /// File does not exists.
+        /// </summary>
         NoSuchFile = ErrorCode.NoSuchFile,
+
+        /// <summary>
+        /// Internal error.
+        /// </summary>
         InternalError = ErrorCode.InvalidOperation,
+
+        /// <summary>
+        /// No space.
+        /// </summary>
         NoSpaceOnDevice = PlayerErrorCode.NoSpaceOnDevice,
+
+        //TODO must be removed.
+        /// <summary>
+        /// Not supported.
+        /// </summary>
         FeatureNotSupported = ErrorCode.NotSupported,
+
+        //TODO must be removed.
+        /// <summary>
+        /// Permission denined.
+        /// </summary>
         PermissionDenied = ErrorCode.PermissionDenied,
+
+        /// <summary>
+        /// Not enough buffer.
+        /// </summary>
         BufferSpace = ErrorCode.BufferSpace,
+
+        /// <summary>
+        /// <see cref="Player.SetPlayPositionAsync(int, bool)/> failed.
+        /// </summary>
         SeekFailed = PlayerErrorCode.SeekFailed,
+
+        /// <summary>
+        /// Invalid state.
+        /// </summary>
         InvalidState = PlayerErrorCode.InvalidState,
+
+        /// <summary>
+        /// Not supported file.
+        /// </summary>
         NotSupportedFile = PlayerErrorCode.NotSupportedFile,
+
+        /// <summary>
+        /// Invalid uri.
+        /// </summary>
         InvalidUri = PlayerErrorCode.InvalidUri,
+
+        //TODO must be removed.
+        /// <summary>
+        /// Sound policy error.
+        /// </summary>
         SoundPolicy = PlayerErrorCode.SoundPolicyError,
+
+        /// <summary>
+        /// Connection to service failed.
+        /// </summary>
         ConnectionFailed = PlayerErrorCode.ConnectionFailed,
+
+        // TODO must be removed.
+        /// <summary>
+        /// Capture failed.
+        /// </summary>
         VideoCaptureFailed = PlayerErrorCode.VideoCaptureFailed,
+
+        // TODO must be removed.
+        /// <summary>
+        /// DRM expired.
+        /// </summary>
         DrmExpired = PlayerErrorCode.DrmExpired,
+
+        // TODO must be removed.
+        /// <summary>
+        /// No license of DRM.
+        /// </summary>
         DrmNoLicense = PlayerErrorCode.DrmNoLicense,
+
+        // TODO must be removed.
+        /// <summary>
+        /// Not used.
+        /// </summary>
         DrmFutureUse = PlayerErrorCode.DrmFutureUse,
+
+        /// <summary>
+        /// Not permitted DRM.
+        /// </summary>
         DrmNotPermitted = PlayerErrorCode.DrmNotPermitted,
+
+        // TODO must be removed.
+        /// <summary>
+        /// Not enough resource.
+        /// </summary>
         ResourceLimit = PlayerErrorCode.ResourceLimit,
+
+        /// <summary>
+        /// Service disconnected.
+        /// </summary>
         ServiceDisconnected = PlayerErrorCode.ServiceDisconnected,
+
+        /// <summary>
+        /// Not supported subtitle file.
+        /// </summary>
         SubtitleNotSupported = PlayerErrorCode.NotSupportedSubtitle,
     }