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

  /external/chromium_org/content/browser/renderer_host/media/
video_capture_buffer_pool.h 46 class CONTENT_EXPORT VideoCaptureBufferPool
47 : public base::RefCountedThreadSafe<VideoCaptureBufferPool> {
50 explicit VideoCaptureBufferPool(int count);
96 friend class base::RefCountedThreadSafe<VideoCaptureBufferPool>;
114 virtual ~VideoCaptureBufferPool();
132 DISALLOW_IMPLICIT_CONSTRUCTORS(VideoCaptureBufferPool);
video_capture_buffer_pool.cc 17 const int VideoCaptureBufferPool::kInvalidId = -1;
19 VideoCaptureBufferPool::VideoCaptureBufferPool(int count)
24 VideoCaptureBufferPool::~VideoCaptureBufferPool() {
28 base::SharedMemoryHandle VideoCaptureBufferPool::ShareToProcess(
45 bool VideoCaptureBufferPool::GetBufferInfo(int buffer_id,
62 int VideoCaptureBufferPool::ReserveForProducer(size_t size,
68 void VideoCaptureBufferPool::RelinquishProducerReservation(int buffer_id) {
79 void VideoCaptureBufferPool::HoldForConsumers
    [all...]
video_capture_controller.h 66 class VideoCaptureBufferPool;
137 const scoped_refptr<VideoCaptureBufferPool> buffer_pool_;
video_capture_buffer_pool_unittest.cc 5 // Unit test for VideoCaptureBufferPool.
23 Buffer(const scoped_refptr<VideoCaptureBufferPool> pool,
34 const scoped_refptr<VideoCaptureBufferPool> pool_;
41 pool_(new VideoCaptureBufferPool(3)) {}
54 if (buffer_id == VideoCaptureBufferPool::kInvalidId)
65 scoped_refptr<VideoCaptureBufferPool> pool_;
80 ExpectDroppedId(VideoCaptureBufferPool::kInvalidId);
176 ExpectDroppedId(VideoCaptureBufferPool::kInvalidId);
video_capture_controller.cc 29 // The number of buffers that VideoCaptureBufferPool should allocate.
34 PoolBuffer(const scoped_refptr<VideoCaptureBufferPool>& pool,
45 const scoped_refptr<VideoCaptureBufferPool> pool_;
106 const scoped_refptr<VideoCaptureBufferPool>& buffer_pool);
134 const scoped_refptr<VideoCaptureBufferPool> buffer_pool_;
138 : buffer_pool_(new VideoCaptureBufferPool(kNoOfBuffers)),
145 const scoped_refptr<VideoCaptureBufferPool>& buffer_pool)
468 int buffer_id_to_drop = VideoCaptureBufferPool::kInvalidId;
474 if (buffer_id == VideoCaptureBufferPool::kInvalidId)
483 if (buffer_id_to_drop != VideoCaptureBufferPool::kInvalidId)
    [all...]
web_contents_video_capture_device_unittest.cc 317 buffer_pool_ = new VideoCaptureBufferPool(2);
326 int buffer_id_to_drop = VideoCaptureBufferPool::kInvalidId; // Ignored.
329 if (buffer_id == VideoCaptureBufferPool::kInvalidId)
374 PoolBuffer(const scoped_refptr<VideoCaptureBufferPool>& pool,
382 const scoped_refptr<VideoCaptureBufferPool> pool_;
385 scoped_refptr<VideoCaptureBufferPool> buffer_pool_;

Completed in 471 milliseconds