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

  /external/libvpx/libvpx/test/
yuv_video_source.h 30 : 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
y4m_video_source.h 25 : 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
video_source.h 136 : 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_->bps / 8
197 vpx_image_t *img_; member in class:libvpx_test::DummyVideoSource
    [all...]
vpx_scale_test.cc 33 memset(&img_, 0, sizeof(img_));
34 ASSERT_EQ(0, vp8_yv12_alloc_frame_buffer(&img_, width_, height_,
36 memset(img_.buffer_alloc, kBufFiller, img_.frame_size);
37 FillPlane(img_.y_buffer, img_.y_crop_width, img_.y_crop_height,
38 img_.y_stride);
39 FillPlane(img_.u_buffer, img_.uv_crop_width, img_.uv_crop_height
153 YV12_BUFFER_CONFIG img_; member in class:__anon24415::VpxScaleBase
    [all...]
  /external/webp/src/mux/
muxi.h 50 WebPChunk* img_; // Corresponds to WEBP_CHUNK_IMAGE. member in struct:WebPMuxImage
  /external/google-breakpad/src/common/windows/
pdb_source_line_writer.cc 111 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::__anon19393::AutoImage
    [all...]

Completed in 138 milliseconds