/external/chromium_org/media/base/ |
decoder_buffer.cc | 19 const uint8* side_data, int side_data_size) 24 CHECK(!side_data); 30 if (side_data) 31 memcpy(side_data_.get(), side_data, side_data_size_); 59 const uint8* side_data, 63 CHECK(side_data); 65 side_data, side_data_size));
|
stream_parser_buffer.h | 23 const uint8* side_data, int side_data_size, bool is_keyframe); 38 const uint8* side_data, int side_data_size,
|
stream_parser_buffer.cc | 24 const uint8* side_data, int side_data_size, bool is_keyframe) { 26 new StreamParserBuffer(data, data_size, side_data, side_data_size, 41 const uint8* side_data, 43 : DecoderBuffer(data, data_size, side_data, 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 133 const uint8* side_data, int side_data_size);
|
decoder_buffer_unittest.cc | 45 EXPECT_NE(kData, buffer3->side_data()); 47 EXPECT_EQ(0, memcmp(buffer3->side_data(), kData, kDataSize));
|
/external/chromium_org/media/filters/ |
vpx_video_decoder.cc | 286 *(reinterpret_cast<const uint64*>(buffer->side_data()))); 289 buffer->side_data() + 8,
|
ffmpeg_demuxer.cc | 113 // Get side data if any. For now, the only type of side_data is VP8 Alpha. We 114 // keep this generic so that other side_data types in the future can be 118 uint8* side_data = av_packet_get_side_data( local 129 side_data, side_data_size);
|