[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
index 58b1ec6..e131789 100755 (executable)
@@ -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;
-            Information.TryGetValue(featureKey, out supported);
-            return supported;
+            return Information.TryGetValue(featureKey, out bool supported) && supported;
         }
 
     }