Bug 1325005 - Preference on media.decoder.recycle.enabled not only for Nightly build. draft
authorJames Cheng <jacheng@mozilla.com>
Wed, 21 Dec 2016 15:50:04 +0800
changeset 452183 dc4da39d4fe611e54a3b3fb20869ba7552aab268
parent 452146 c36fbe84042debef0a5d58b7fc88185b401762ce
child 540170 4ff3f730daa88db3e68206f47865055b7649244a
push id39341
push userbmo:jacheng@mozilla.com
push dateWed, 21 Dec 2016 07:50:28 +0000
bugs1325005
milestone53.0a1
Bug 1325005 - Preference on media.decoder.recycle.enabled not only for Nightly build. MozReview-Commit-ID: Ivsy0Y6ot13
mobile/android/app/mobile.js
--- a/mobile/android/app/mobile.js
+++ b/mobile/android/app/mobile.js
@@ -614,20 +614,18 @@ pref("media.cache_readahead_limit", 30);
 // chronically starved of video frames. All decoders seen so far have a value
 // of at least 4.
 pref("media.video-queue.default-size", 3);
 // The maximum number of queued frames to send to the compositor.
 // On Android, it needs to be throttled because SurfaceTexture contains only one
 // (the most recent) image data.
 pref("media.video-queue.send-to-compositor-size", 1);
 
-#ifdef NIGHTLY_BUILD
 // Allow to check if the decoder supports recycling only on Fennec nightly build.
 pref("media.decoder.recycle.enabled", true);
-#endif
 
 // Enable the MediaCodec PlatformDecoderModule by default.
 pref("media.android-media-codec.enabled", true);
 pref("media.android-media-codec.preferred", true);
 // Run decoder in seperate process.
 #ifdef NIGHTLY_BUILD
 pref("media.android-remote-codec.enabled", true);
 #else