Switch the default option from B to A

The switch implies that we will not transcode by default.

Test: manual
BUG=177931834

Change-Id: I6daee5bdf0f77ef65eda2db6be055fad0bceded3
This commit is contained in:
Manish Singh
2021-01-19 22:29:09 +00:00
parent a347993239
commit 1c1329948f

View File

@@ -35,7 +35,7 @@ public class TranscodeDefaultOptionPreferenceController extends TogglePreference
@Override
public boolean isChecked() {
return !SystemProperties.getBoolean(TRANSCODE_DEFAULT_SYS_PROP_KEY, true);
return !SystemProperties.getBoolean(TRANSCODE_DEFAULT_SYS_PROP_KEY, false);
}
@Override