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

  /external/chromium_org/media/filters/
webvtt_util.h 16 std::vector<uint8>* side_data) {
21 side_data->clear();
22 side_data->insert(side_data->end(), id_begin, id_end);
23 side_data->push_back(0);
24 side_data->insert(side_data->end(), settings_begin, settings_end);
25 side_data->push_back(0);
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...]
vpx_video_decoder.cc 401 *(reinterpret_cast<const uint64*>(buffer->side_data())));
404 buffer->side_data() + 8,
  /external/chromium_org/media/base/
decoder_buffer.cc 20 const uint8* side_data, int side_data_size)
25 CHECK(!side_data);
31 if (side_data)
32 memcpy(side_data_.get(), side_data, side_data_size_);
61 const uint8* side_data,
65 CHECK(side_data);
67 side_data, side_data_size));
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);
stream_parser_buffer.cc 20 buffer.side_data(),
57 const uint8* side_data, int side_data_size,
60 new StreamParserBuffer(data, data_size, side_data, side_data_size,
77 const uint8* side_data,
80 : DecoderBuffer(data, data_size, side_data, side_data_size),
132 // TODO(dalecurtis): We should also clear |data| and |side_data|, but since
decoder_buffer_unittest.cc 45 EXPECT_NE(kData, buffer3->side_data());
47 EXPECT_EQ(0, memcmp(buffer3->side_data(), kData, kDataSize));
stream_parser_buffer.h 117 const uint8* side_data, int side_data_size, bool is_keyframe, Type type,
176 const uint8* side_data, int side_data_size,
text_renderer.cc 186 const char* id_ptr = reinterpret_cast<const char*>(input->side_data());
  /external/chromium_org/media/mojo/services/
media_type_converters.cc 144 std::vector<uint8> side_data(input->side_data(),
145 input->side_data() + input->side_data_size());
146 mojo_buffer->side_data.Swap(&side_data);
184 // TODO(tim): We can't create a media::DecoderBuffer that has side_data
191 &input->side_data.front(),
media_type_converters_unittest.cc 41 EXPECT_EQ(0, memcmp(result->side_data(), kSideData, kSideDataSize));
  /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(),

Completed in 183 milliseconds