HomeSort by relevance Sort by last modified time
    Searched refs:BufferQueueController (Results 1 - 14 of 14) sorted by null

  /packages/apps/Camera2/src/com/android/camera/async/
RefCountedBufferQueueController.java 22 * Wraps a {@link BufferQueueController} with reference counting.
24 public class RefCountedBufferQueueController<T> implements BufferQueueController<T> {
25 private final RefCountBase<BufferQueueController> mBuffer;
27 public RefCountedBufferQueueController(BufferQueueController<T> stream) {
28 mBuffer = new RefCountBase<BufferQueueController>(stream, 1);
BufferQueueController.java 25 public interface BufferQueueController<T> extends Updatable<T>, SafeCloseable {
CountableBufferQueue.java 28 public class CountableBufferQueue<T> implements BufferQueueController<T>, BufferQueue<T> {
ConcurrentBufferQueue.java 40 public class ConcurrentBufferQueue<T> implements BufferQueue<T>, BufferQueueController<T>,
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/metadatasynchronizer/
MetadataPoolFactory.java 19 import com.android.camera.async.BufferQueueController;
26 private final BufferQueueController<ImageProxy> mImageQueue;
29 public MetadataPoolFactory(BufferQueueController<ImageProxy> imageQueue) {
42 public BufferQueueController<ImageProxy> provideImageQueue() {
MetadataReleasingImageQueue.java 19 import com.android.camera.async.BufferQueueController;
34 public class MetadataReleasingImageQueue implements BufferQueueController<ImageProxy> {
51 private final BufferQueueController<ImageProxy> mOutputQueue;
54 public MetadataReleasingImageQueue(BufferQueueController<ImageProxy> outputQueue,
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/imagedistributor/
ImageDistributor.java 20 import com.android.camera.async.BufferQueueController;
42 BufferQueueController<ImageProxy> outputStream);
ImageDistributorImpl.java 20 import com.android.camera.async.BufferQueueController;
34 * Distributes incoming images to output {@link BufferQueueController}s
45 public final BufferQueueController<ImageProxy> imageStream;
48 BufferQueueController<ImageProxy> imageStream) {
58 * the {@link BufferQueueController} to receive images with those
122 List<BufferQueueController<ImageProxy>> streamsToReceiveImage = new ArrayList<>();
186 for (BufferQueueController<ImageProxy> outputStream : streamsToReceiveImage) {
210 BufferQueueController<ImageProxy> outputStream) {
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/
TicketRequiredFilter.java 19 import com.android.camera.async.BufferQueueController;
28 * Decorates a BufferQueueController by attaching incoming images with a ticket
32 class TicketRequiredFilter implements BufferQueueController<ImageProxy> {
34 private final BufferQueueController<ImageProxy> mImageSequence;
37 BufferQueueController<ImageProxy> imageSequence) {
ImageStreamImpl.java 22 import com.android.camera.async.BufferQueueController;
37 private final BufferQueueController<ImageProxy> mImageStreamController;
42 BufferQueueController<ImageProxy> imageStreamController,
AllocatingImageStream.java 22 import com.android.camera.async.BufferQueueController;
57 BufferQueueController<ImageProxy> imageStreamController,
ManagedImageReader.java 23 import com.android.camera.async.BufferQueueController;
104 BufferQueueController<ImageProxy> imageStreamController = new
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/ringbuffer/
DynamicRingBufferFactory.java 20 import com.android.camera.async.BufferQueueController;
42 private final BufferQueueController<ImageProxy> mRingBufferInput;
66 public BufferQueueController<ImageProxy> provideRingBufferInput() {
DynamicRingBuffer.java 20 import com.android.camera.async.BufferQueueController;
44 * BufferQueueController (input).
61 BufferQueueController<ImageProxy> {

Completed in 451 milliseconds