OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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)
25
VideoCaptureBufferPool
::~
VideoCaptureBufferPool
() {
29
base::SharedMemoryHandle
VideoCaptureBufferPool
::ShareToProcess(
46
bool
VideoCaptureBufferPool
::GetBufferInfo(int buffer_id,
63
int
VideoCaptureBufferPool
::ReserveForProducer(size_t size,
69
void
VideoCaptureBufferPool
::RelinquishProducerReservation(int buffer_id) {
80
void
VideoCaptureBufferPool
::HoldForConsumers
[
all
...]
video_capture_controller.h
65
class
VideoCaptureBufferPool
;
153
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
47
PoolBuffer(const scoped_refptr<
VideoCaptureBufferPool
>& pool,
58
const scoped_refptr<
VideoCaptureBufferPool
> pool_;
158
const scoped_refptr<
VideoCaptureBufferPool
>& buffer_pool);
186
const scoped_refptr<
VideoCaptureBufferPool
> buffer_pool_;
190
: buffer_pool_(new
VideoCaptureBufferPool
(max_buffers)),
198
const scoped_refptr<
VideoCaptureBufferPool
>& buffer_pool)
556
int buffer_id_to_drop =
VideoCaptureBufferPool
::kInvalidId;
559
if (buffer_id ==
VideoCaptureBufferPool
::kInvalidId)
568
if (buffer_id_to_drop !=
VideoCaptureBufferPool
::kInvalidId) {
590
DCHECK_NE(buffer->id(),
VideoCaptureBufferPool
::kInvalidId)
[
all
...]
/external/chromium_org/content/browser/media/capture/
web_contents_video_capture_device_unittest.cc
319
buffer_pool_ = new
VideoCaptureBufferPool
(2);
329
int buffer_id_to_drop =
VideoCaptureBufferPool
::kInvalidId; // Ignored.
332
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 808 milliseconds