Merge "Revert^2 "trancoding: lazy-start transcoding service"" into sc-dev

This commit is contained in:
Hangyu Kuang
2021-07-01 19:03:10 +00:00
committed by Android (Google) Code Review

View File

@@ -45,12 +45,21 @@ public class MediaServiceManager {
*/ */
public static final class ServiceRegisterer { public static final class ServiceRegisterer {
private final String mServiceName; private final String mServiceName;
private final boolean mLazyStart;
/**
* @hide
*/
public ServiceRegisterer(String serviceName, boolean lazyStart) {
mServiceName = serviceName;
mLazyStart = lazyStart;
}
/** /**
* @hide * @hide
*/ */
public ServiceRegisterer(String serviceName) { public ServiceRegisterer(String serviceName) {
mServiceName = serviceName; this(serviceName, false /*lazyStart*/);
} }
/** /**
@@ -61,6 +70,9 @@ public class MediaServiceManager {
*/ */
@Nullable @Nullable
public IBinder get() { public IBinder get() {
if (mLazyStart) {
return ServiceManager.waitForService(mServiceName);
}
return ServiceManager.getService(mServiceName); return ServiceManager.getService(mServiceName);
} }
} }
@@ -78,7 +90,7 @@ public class MediaServiceManager {
*/ */
@NonNull @NonNull
public ServiceRegisterer getMediaTranscodingServiceRegisterer() { public ServiceRegisterer getMediaTranscodingServiceRegisterer() {
return new ServiceRegisterer(MEDIA_TRANSCODING_SERVICE); return new ServiceRegisterer(MEDIA_TRANSCODING_SERVICE, true /*lazyStart*/);
} }
/** /**