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 52 std::vector<uint8> side_data; local
55 &side_data);
57 const uint8* const sd_buf = &side_data[0];
58 const int sd_len = static_cast<int>(side_data.size());
decoder_buffer.h 52 // is copied from |side_data|. Buffers will be padded and aligned as necessary
55 const uint8* side_data,
98 const uint8* side_data() const { function in class:media::DecoderBuffer
163 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 140 // Get side data if any. For now, the only type of side_data is VP8 Alpha. We
141 // keep this generic so that other side_data types in the future can be
160 std::vector<uint8> side_data; local
163 &side_data);
166 side_data.data(), side_data.size());
169 uint8* side_data = av_packet_get_side_data( local
194 side_data, side_data_size);
    [all...]

Completed in 98 milliseconds