Enable stagefright for playback, metadata scan and retrieval as well as http streaming on the simulator (for parity with devices)
diff --git a/simulator/app/PropertyServer.cpp b/simulator/app/PropertyServer.cpp
index a358856..eb1bfc3 100644
--- a/simulator/app/PropertyServer.cpp
+++ b/simulator/app/PropertyServer.cpp
@@ -148,7 +148,11 @@
         { "debug.sf.showfps", "0" },
         { "default", "default" },
 
+        /* Stagefright options */
         { "media.stagefright.enable-player", "true" },
+        { "media.stagefright.enable-meta", "true" },
+        { "media.stagefright.enable-scan", "true" },
+        { "media.stagefright.enable-http", "true" },
     };
 
     for (int i = 0; i < NELEM(propList); i++)