OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:side_data
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/media/base/
fake_text_track_stream.cc
50
std::vector<uint8>
side_data
;
local
53
&
side_data
);
55
const uint8* const sd_buf = &
side_data
[0];
56
const int sd_len = static_cast<int>(
side_data
.size());
decoder_buffer.h
51
// is copied from |
side_data
|. Buffers will be padded and aligned as necessary
54
const uint8*
side_data
,
98
const uint8*
side_data
() const {
function in class:media::DecoderBuffer
143
const uint8*
side_data
, int side_data_size);
/external/chromium_org/media/webm/
webm_cluster_parser.cc
268
// First 8 bytes of
side_data
in DecoderBuffer is the BlockAddID
356
std::vector<uint8>
side_data
;
local
359
&
side_data
);
364
&
side_data
[0],
365
side_data
.size(),
/external/chromium_org/media/filters/
ffmpeg_demuxer.cc
115
// Get side data if any. For now, the only type of
side_data
is VP8 Alpha. We
116
// keep this generic so that other
side_data
types in the future can be
134
std::vector<uint8>
side_data
;
local
137
&
side_data
);
140
side_data
.data(),
side_data
.size());
143
uint8*
side_data
= av_packet_get_side_data(
local
153
side_data
, side_data_size);
Completed in 519 milliseconds