/external/libaom/libaom/test/ |
yuv_video_source.h | 31 : file_name_(file_name), input_file_(NULL), img_(NULL), start_(start), 40 aom_img_free(img_); 61 virtual aom_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } 80 aom_img_free(img_); 81 img_ = aom_img_alloc(NULL, format, width, height, 1); 82 ASSERT_TRUE(img_ != NULL); 101 if (fread(img_->img_data, raw_size_, 1, input_file_) == 0) { 109 aom_image_t *img_; member in class:libaom_test::YUVVideoSource
|
y4m_video_source.h | 27 : file_name_(file_name), input_file_(NULL), img_(new aom_image_t()), 32 aom_img_free(img_.get()); 67 return (frame_ < limit_) ? img_.get() : NULL; 87 y4m_input_fetch_frame(&y4m_, input_file_, img_.get()); 97 tmp = other->img_.release(); 98 other->img_.reset(img_.release()); 99 img_.reset(tmp); 114 std::unique_ptr<aom_image_t> img_; member in class:libaom_test::Y4mVideoSource
|
video_source.h | 138 : img_(NULL), limit_(100), width_(80), height_(64), 143 virtual ~DummyVideoSource() { aom_img_free(img_); } 155 virtual aom_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } 190 if (img_) memset(img_->img_data, 0, raw_sz_); 194 aom_img_free(img_); 195 img_ = aom_img_alloc(NULL, format_, width_, height_, 32); 196 raw_sz_ = ((img_->w + 31) & ~31) * img_->h * img_->bps / 8 199 aom_image_t *img_; member in class:libaom_test::DummyVideoSource [all...] |
/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
|
vpx_scale_test.h | 42 ResetImage(&img_, width, height); 46 FillPlane(img_.y_buffer, img_.y_crop_width, img_.y_crop_height, 47 img_.y_stride); 48 FillPlane(img_.u_buffer, img_.uv_crop_width, img_.uv_crop_height, 49 img_.uv_stride); 50 FillPlane(img_.v_buffer, img_.uv_crop_width, img_.uv_crop_height 194 YV12_BUFFER_CONFIG img_; member in class:libvpx_test::VpxScaleBase [all...] |
y4m_video_source.h | 26 : file_name_(file_name), input_file_(NULL), img_(new vpx_image_t()), 31 vpx_img_free(img_.get()); 65 return (frame_ < limit_) ? img_.get() : NULL; 85 y4m_input_fetch_frame(&y4m_, input_file_, img_.get()); 95 tmp = other->img_.release(); 96 other->img_.reset(img_.release()); 97 img_.reset(tmp); 112 std::unique_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...] |
/external/webp/src/mux/ |
muxi.h | 51 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::__anon22611::AutoImage [all...] |