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

  /external/webrtc/webrtc/video/
video_decoder_unittest.cc 85 EncodedImage encoded_image; local
86 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
90 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
95 encoded_image._frameType = kVideoFrameKey;
97 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
101 encoded_image._frameType = kVideoFrameDelta;
102 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
111 EncodedImage encoded_image; local
114 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1));
117 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1)
129 EncodedImage encoded_image; local
144 EncodedImage encoded_image; local
170 EncodedImage encoded_image; local
182 EncodedImage encoded_image; local
    [all...]
send_statistics_proxy_unittest.cc 350 EncodedImage encoded_image; local
351 encoded_image._encodedWidth = kEncodedWidth;
352 encoded_image._encodedHeight = kEncodedHeight;
357 statistics_proxy_->OnSendEncodedImage(encoded_image, &rtp_video_header);
359 statistics_proxy_->OnSendEncodedImage(encoded_image, &rtp_video_header);
382 statistics_proxy_->OnSendEncodedImage(encoded_image, &rtp_video_header);
397 EncodedImage encoded_image; local
398 encoded_image._encodedWidth = kEncodedWidth;
399 encoded_image._encodedHeight = kEncodedHeight;
404 statistics_proxy_->OnSendEncodedImage(encoded_image, &rtp_video_header)
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
media_optimization_unittest.cc 38 EncodedImage encoded_image; local
39 encoded_image._length = bytes_per_frame;
40 encoded_image._timeStamp = next_timestamp_;
41 encoded_image._frameType = kVideoFrameKey;
42 ASSERT_EQ(VCM_OK, media_opt_.UpdateWithEncodedData(encoded_image));
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_sequence_coder.cc 28 int Encoded(const webrtc::EncodedImage& encoded_image,
32 webrtc::EncodedImage encoded_image() { return encoded_image_; } function in class:Vp8SequenceCoderEncodeCallback
46 const webrtc::EncodedImage& encoded_image,
49 if (encoded_image_._size < encoded_image._size) {
52 encoded_image_._buffer = new uint8_t[encoded_image._size];
53 encoded_image_._size = encoded_image._size;
55 memcpy(encoded_image_._buffer, encoded_image._buffer, encoded_image._size);
56 encoded_image_._length = encoded_image._length;
58 if (fwrite(encoded_image._buffer, 1, encoded_image._length
    [all...]

Completed in 1476 milliseconds