Searched refs:img_ (Results 1 - 11 of 11) sorted by relevance

/external/libvpx/libvpx/test/
H A Dvpx_scale_test.h41 ResetImage(&img_, width, height);
45 FillPlane(img_.y_buffer, img_.y_crop_width, img_.y_crop_height,
46 img_.y_stride);
47 FillPlane(img_.u_buffer, img_.uv_crop_width, img_.uv_crop_height,
48 img_.uv_stride);
49 FillPlane(img_
193 YV12_BUFFER_CONFIG img_; member in class:libvpx_test::VpxScaleBase
[all...]
H A Dvideo_source.h136 : img_(NULL), limit_(100), width_(80), height_(64),
141 virtual ~DummyVideoSource() { vpx_img_free(img_); }
153 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; }
188 if (img_) memset(img_->img_data, 0, raw_sz_);
192 vpx_img_free(img_);
193 img_ = vpx_img_alloc(NULL, format_, width_, height_, 32);
194 raw_sz_ = ((img_->w + 31) & ~31) * img_->h * img_
197 vpx_image_t *img_; member in class:libvpx_test::DummyVideoSource
[all...]
H A Dy4m_video_source.h25 : file_name_(file_name), input_file_(NULL), img_(new vpx_image_t()),
30 vpx_img_free(img_.get());
64 return (frame_ < limit_) ? img_.get() : NULL;
84 y4m_input_fetch_frame(&y4m_, input_file_, img_.get());
94 tmp = other->img_.release();
95 other->img_.reset(img_.release());
96 img_.reset(tmp);
111 testing::internal::scoped_ptr<vpx_image_t> img_; member in class:libvpx_test::Y4mVideoSource
H A Dyuv_video_source.h30 : file_name_(file_name), input_file_(NULL), img_(NULL), start_(start),
39 vpx_img_free(img_);
61 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; }
80 vpx_img_free(img_);
81 img_ = vpx_img_alloc(NULL, format, width, height, 1);
82 ASSERT_TRUE(img_ != NULL);
103 if (fread(img_->img_data, raw_size_, 1, input_file_) == 0) {
111 vpx_image_t *img_; member in class:libvpx_test::YUVVideoSource
H A Dvpx_scale_test.cc37 void ExtendBorder() { ASM_REGISTER_STATE_CHECK(extend_fn_(&img_)); }
52 CompareImages(img_);
75 ASM_REGISTER_STATE_CHECK(copy_frame_fn_(&img_, &dst_img_));
H A Dvp9_scale_test.cc42 vp9_scale_and_extend_frame_c(&img_, &ref_img_, filter_type, phase_scaler);
47 scale_fn_(&img_, &dst_img_, filter_type, phase_scaler));
/external/webp/src/mux/
H A Dmuxinternal.c237 ChunkDelete(wpi->img_);
255 case WEBP_CHUNK_IMAGE: return (WebPChunk**)&wpi->img_;
368 if (wpi->img_ != NULL) size += ChunkDiskSize(wpi->img_);
399 if (wpi->img_ != NULL) dst = ChunkEmit(wpi->img_, dst);
H A Dmuxread.c76 const WebPChunk* const img = wpi->img_;
140 if (ChunkSetNth(&subchunk, &wpi->img_, 1) != WEBP_MUX_OK) goto Fail;
243 if (ChunkSetNth(&chunk, &wpi->img_, 1) != WEBP_MUX_OK) goto Err;
384 ChunkDiskSize(wpi->img_);
397 dst = ChunkListEmit(wpi->img_, dst);
435 info->id = ChunkGetIdFromTag(wpi->img_->tag_);
H A Dmuxedit.c142 assert(wpi != NULL && wpi->img_ != NULL);
143 *image = wpi->img_->data_;
214 // and wpi.img_ appropriately.
228 err = AddDataToChunkList(&image, copy_data, image_tag, &wpi->img_);
292 assert(wpi.img_ != NULL); // As SetAlphaAndImageChunks() was successful.
433 assert(wpi->img_ != NULL);
479 if (images == NULL || images->img_ == NULL ||
480 images->img_->data_.bytes == NULL) {
H A Dmuxi.h50 WebPChunk* img_; // Corresponds to WEBP_CHUNK_IMAGE. member in struct:WebPMuxImage
/external/google-breakpad/src/common/windows/
H A Dpdb_source_line_writer.cc111 explicit AutoImage(PLOADED_IMAGE img) : img_(img) {}
113 if (img_)
114 ImageUnload(img_);
117 operator PLOADED_IMAGE() { return img_; }
118 PLOADED_IMAGE operator->() { return img_; }
121 PLOADED_IMAGE img_; member in class:google_breakpad::__anon7458::AutoImage

Completed in 1468 milliseconds