![JAR search and dependency download from the Maven repository](/logo.png)
src.android.hardware.camera2.legacy.BurstHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-all Show documentation
Show all versions of android-all Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.hardware.camera2.legacy;
import android.hardware.camera2.CaptureRequest;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
/**
* Immutable container for a burst of capture results.
*/
public class BurstHolder {
private static final String TAG = "BurstHolder";
private final ArrayList mRequestBuilders;
private final boolean mRepeating;
private final int mRequestId;
/**
* Immutable container for a burst of capture results.
*
* @param requestId id of the burst request.
* @param repeating true if this burst is repeating.
* @param requests the array of {@link CaptureRequest}s for this burst.
* @param jpegSurfaceIds a {@link Collection} of IDs for the surfaces that have jpeg outputs.
*/
public BurstHolder(int requestId, boolean repeating, CaptureRequest[] requests,
Collection jpegSurfaceIds) {
mRequestBuilders = new ArrayList<>();
int i = 0;
for (CaptureRequest r : requests) {
mRequestBuilders.add(new RequestHolder.Builder(requestId, /*subsequenceId*/i,
/*request*/r, repeating, jpegSurfaceIds));
++i;
}
mRepeating = repeating;
mRequestId = requestId;
}
/**
* Get the id of this request.
*/
public int getRequestId() {
return mRequestId;
}
/**
* Return true if this repeating.
*/
public boolean isRepeating() {
return mRepeating;
}
/**
* Return the number of requests in this burst sequence.
*/
public int getNumberOfRequests() {
return mRequestBuilders.size();
}
/**
* Create a list of {@link RequestHolder} objects encapsulating the requests in this burst.
*
* @param frameNumber the starting framenumber for this burst.
* @return the list of {@link RequestHolder} objects.
*/
public List produceRequestHolders(long frameNumber) {
ArrayList holders = new ArrayList();
int i = 0;
for (RequestHolder.Builder b : mRequestBuilders) {
holders.add(b.build(frameNumber + i));
++i;
}
return holders;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy