OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ready_buffers_
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/media/formats/webm/
webm_cluster_parser.h
54
// Prepares |
ready_buffers_
| for retrieval. Prior to calling,
55
// |
ready_buffers_
| must be empty. Moves all |buffers_| with timestamp
56
// before |before_timestamp| to |
ready_buffers_
|, preserving their order.
59
const BufferQueue& ready_buffers() const { return
ready_buffers_
; }
75
// Clears |
ready_buffers_
| (use ExtractReadyBuffers() to fill it again).
82
// |
ready_buffers_
|.
108
// that have not yet been extracted into |
ready_buffers_
|. Note that up to
116
// |
ready_buffers_
| by ExtractReadyBuffers() if they are below a specified
120
BufferQueue
ready_buffers_
;
member in class:media::WebMClusterParser::Track
webm_cluster_parser.cc
443
DCHECK(
ready_buffers_
.empty());
452
DCHECK(
ready_buffers_
.empty());
461
ready_buffers_
.swap(buffers_);
463
<<
ready_buffers_
.size() << " are ready: before upper bound ts "
469
// |
ready_buffers_
|.
474
ready_buffers_
.push_back(buffer);
480
<<
ready_buffers_
.size() << " ready, " << buffers_.size()
543
ready_buffers_
.clear();
Completed in 352 milliseconds