[Multimedia] Modified a constructor of the Display class not to check the raw video...
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia / Common.Internal / Features.cs
old mode 100644 (file)
new mode 100755 (executable)
index 50c8508..e131789
@@ -20,14 +20,9 @@ namespace Tizen.Multimedia
 {
     internal static class Features
     {
-        internal const string AudioEffect = "http://tizen.org/feature/multimedia.custom_audio_effect";
-        internal const string RawVideo = "http://tizen.org/feature/multimedia.raw_video";
-
         internal static bool IsSupported(string featureKey)
         {
-            bool supported = false;
-            SystemInfo.TryGetValue(featureKey, out supported);
-            return supported;
+            return Information.TryGetValue(featureKey, out bool supported) && supported;
         }
 
     }