HomeSort by relevance Sort by last modified time
    Searched defs:side_data (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/media/base/
fake_text_track_stream.cc 56 std::vector<uint8> side_data; local
59 &side_data);
61 const uint8* const sd_buf = &side_data[0];
62 const int sd_len = static_cast<int>(side_data.size());
decoder_buffer.h 53 // is copied from |side_data|. Buffers will be padded and aligned as necessary
56 const uint8* side_data,
102 const uint8* side_data() const { function in class:media::DecoderBuffer
167 const uint8* side_data, int side_data_size);
  /external/chromium_org/media/formats/webm/
webm_cluster_parser.cc 270 // First 8 bytes of side_data in DecoderBuffer is the BlockAddID
390 std::vector<uint8> side_data; local
393 &side_data);
401 &side_data[0],
402 side_data.size(),
  /external/chromium_org/media/filters/
ffmpeg_demuxer.cc 193 // Get side data if any. For now, the only type of side_data is VP8 Alpha. We
194 // keep this generic so that other side_data types in the future can be
213 std::vector<uint8> side_data; local
216 &side_data);
219 side_data.data(), side_data.size());
222 uint8* side_data = av_packet_get_side_data( local
247 side_data, side_data_size);
    [all...]

Completed in 205 milliseconds