[Multimedia] Modified a constructor of the Display class not to check the raw video...
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.MediaPlayer / Player / Player.Events.cs
index 559bcf4..e3ec8fd 100644 (file)
@@ -181,13 +181,13 @@ namespace Tizen.Multimedia
         {
             add
             {
-                ValidationUtil.ValidateFeatureSupported(Features.RawVideo);
+                ValidationUtil.ValidateFeatureSupported(PlayerFeatures.RawVideo);
 
                 _videoFrameDecoded += value;
             }
             remove
             {
-                ValidationUtil.ValidateFeatureSupported(Features.RawVideo);
+                ValidationUtil.ValidateFeatureSupported(PlayerFeatures.RawVideo);
 
                 _videoFrameDecoded -= value;
             }