Bug 1365505 - [P1][Fennec] Enable HLS support by default for all brandings. draft
authorKilik Kuo <kikuo@mozilla.com>
Thu, 30 Nov 2017 17:46:06 +0800
changeset 705542 4662b3f0bdece150d9730ea7d2050c6d6c0822fa
parent 704973 9e30a05d64c600c73a194af54799fd3af2e683d7
child 705543 4d8d75bb252a51de8778390e917d98a629a92f3d
push id91508
push userkikuo@mozilla.com
push dateThu, 30 Nov 2017 09:54:50 +0000
bugs1365505
milestone59.0a1
Bug 1365505 - [P1][Fennec] Enable HLS support by default for all brandings. MozReview-Commit-ID: AVGfgKR0zRX
mobile/android/app/mobile.js
mobile/android/moz.configure
--- a/mobile/android/app/mobile.js
+++ b/mobile/android/app/mobile.js
@@ -604,19 +604,17 @@ pref("media.mediasource.enabled", true);
 
 pref("media.mediadrm-widevinecdm.visible", true);
 
 #ifdef NIGHTLY_BUILD
 // Enable EME (Encrypted Media Extensions)
 pref("media.eme.enabled", true);
 #endif
 
-#ifdef NIGHTLY_BUILD
 pref("media.hls.enabled", true);
-#endif
 
 // Whether to suspend decoding of videos in background tabs.
 pref("media.suspend-bkgnd-video.enabled", true);
 
 // optimize images memory usage
 pref("image.downscale-during-decode.enabled", true);
 
 // The download protection UI is not implemented yet (bug 1239094).
--- a/mobile/android/moz.configure
+++ b/mobile/android/moz.configure
@@ -75,17 +75,17 @@ project_flag('MOZ_ANDROID_PWA',
 # Note: The framework is always included in the app. This flag controls
 # usage of the framework.
 project_flag('MOZ_SWITCHBOARD',
              help='Include Switchboard A/B framework on Android',
              default=True)
 
 project_flag('MOZ_ANDROID_HLS_SUPPORT',
              help='Enable HLS (HTTP Live Streaming) support (currently using the ExoPlayer library)',
-             default=milestone.is_nightly)
+             default=True)
 
 option(env='MOZ_ANDROID_ACTIVITY_STREAM',
        help='Enable Activity Stream on Android (replacing the default HomePager)',
        default=False)
 
 set_config('MOZ_ANDROID_ACTIVITY_STREAM',
            depends_if('MOZ_ANDROID_ACTIVITY_STREAM')(lambda _: True))