Home
last modified time | relevance | path

Searched refs:raw_ (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/codecs/vp9/
Dvp9_impl.cc71 raw_(NULL), in VP9EncoderImpl()
105 if (raw_ != NULL) { in Release()
106 vpx_img_free(raw_); in Release()
107 raw_ = NULL; in Release()
281 raw_ = vpx_img_wrap(NULL, VPX_IMG_FMT_I420, codec_.width, codec_.height, 1, in InitEncode()
492 RTC_DCHECK_EQ(input_image.width(), static_cast<int>(raw_->d_w)); in Encode()
493 RTC_DCHECK_EQ(input_image.height(), static_cast<int>(raw_->d_h)); in Encode()
503 raw_->planes[VPX_PLANE_Y] = const_cast<uint8_t*>(input_image.buffer(kYPlane)); in Encode()
504 raw_->planes[VPX_PLANE_U] = const_cast<uint8_t*>(input_image.buffer(kUPlane)); in Encode()
505 raw_->planes[VPX_PLANE_V] = const_cast<uint8_t*>(input_image.buffer(kVPlane)); in Encode()
[all …]
Dvp9_impl.h115 vpx_image_t* raw_; variable
/external/v8/src/parsing/
Dparser.h572 : cooked_(8, zone), raw_(8, zone), expressions_(8, zone), pos_(pos) {}
575 const ZoneList<Expression*>* raw() const { return &raw_; }
583 raw_.Add(raw, zone);
593 ZoneList<Expression*> raw_;