OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:processed_frames_
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/media/filters/
frame_processor.cc
70
// Adds |frame| to the end of |
processed_frames_
|.
73
// Appends |
processed_frames_
|, if not empty, to |stream_| and clears
74
// |
processed_frames_
|. Returns false if append failed, true otherwise.
75
// |
processed_frames_
| is cleared in both cases.
105
StreamParser::BufferQueue
processed_frames_
;
member in class:media::MseTrackBuffer
142
processed_frames_
.push_back(frame);
146
if (
processed_frames_
.empty())
149
bool result = stream_->Append(
processed_frames_
);
150
processed_frames_
.clear();
Completed in 54 milliseconds