Home
last modified time | relevance | path

Searched refs:img_ (Results 1 – 25 of 377) sorted by last modified time

12345678910>>...16

/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/crashreporter/google-breakpad/src/common/windows/
H A Dpe_util.cc106 explicit AutoImage(PLOADED_IMAGE img) : img_(img) {} in AutoImage()
108 if (img_) in ~AutoImage()
109 ImageUnload(img_); in ~AutoImage()
112 operator PLOADED_IMAGE() { return img_; } in operator PLOADED_IMAGE()
113 PLOADED_IMAGE operator->() { return img_; } in operator ->()
116 PLOADED_IMAGE img_; member in __anoneea50bd50111::AutoImage
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/aom/test/
H A Dvideo_source.h138 : img_(NULL), limit_(100), width_(80), height_(64), in DummyVideoSource()
143 virtual ~DummyVideoSource() { aom_img_free(img_); } in ~DummyVideoSource()
155 virtual aom_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img()
190 if (img_) memset(img_->img_data, 0, raw_sz_); in FillFrame()
194 aom_img_free(img_); in ReallocImage()
195 img_ = aom_img_alloc(NULL, format_, width_, height_, 32); in ReallocImage()
196 raw_sz_ = ((img_->w + 31) & ~31) * img_->h * img_->bps / 8; in ReallocImage()
199 aom_image_t *img_; variable
224 if (img_) { in FillFrame()
226 for (size_t i = 0; i < raw_sz_; ++i) img_->img_data[i] = rnd_.Rand8(); in FillFrame()
[all …]
H A Dy4m_video_source.h26 : file_name_(file_name), input_file_(NULL), img_(new aom_image_t()), in Y4mVideoSource()
31 aom_img_free(img_.get()); in ~Y4mVideoSource()
65 return (frame_ < limit_) ? img_.get() : NULL; in img()
85 y4m_input_fetch_frame(&y4m_, input_file_, img_.get()); in FillFrame()
95 tmp = other->img_.release(); in SwapBuffers()
96 other->img_.reset(img_.release()); in SwapBuffers()
97 img_.reset(tmp); in SwapBuffers()
112 testing::internal::scoped_ptr<aom_image_t> img_; variable
H A Dyuv_video_source.h31 : file_name_(file_name), input_file_(NULL), img_(NULL), start_(start), in YUVVideoSource()
40 aom_img_free(img_); in ~YUVVideoSource()
61 virtual aom_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img()
80 aom_img_free(img_); in SetSize()
81 img_ = aom_img_alloc(NULL, format, width, height, 1); in SetSize()
82 ASSERT_TRUE(img_ != NULL); in SetSize()
101 if (fread(img_->img_data, raw_size_, 1, input_file_) == 0) { in FillFrame()
109 aom_image_t *img_; variable
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/jpeg-xl/lib/jxl/
H A Ddct_util.h58 img_ = Image3<T>(xsize, ysize); in ACImageT()
64 return ACPtr(img_.PlaneRow(c, y) + xbase); in PlaneRow()
67 return ConstACPtr(img_.PlaneRow(c, y) + xbase); in PlaneRow()
70 size_t PixelsPerRow() const override { return img_.PixelsPerRow(); } in PixelsPerRow()
72 void ZeroFill() override { ZeroFillImage(&img_); } in ZeroFill()
74 void ZeroFillPlane(size_t c) override { ZeroFillImage(&img_.Plane(c)); } in ZeroFillPlane()
77 return img_.xsize() == 0 || img_.ysize() == 0; in IsEmpty()
81 Image3<T> img_;
H A Ddec_reconstruct.cc367 img_ = img; in Init()
375 img_ = &img3_->Plane(c); in Process3()
380 JXL_DASSERT(img_); in Process()
386 float* JXL_RESTRICT row = img_->Row(y + y0_); in Process()
397 float* JXL_RESTRICT row = img_->Row(y + y0_) + x1_; in Process()
412 ImageF* img_ = nullptr; member in jxl::__anonfd86a2a80511::EnsurePaddingInPlaceRowByRow
/dports/mail/thunderbird/thunderbird-91.8.0/media/libvpx/libvpx/test/
H A Dyuv_video_source.h30 : file_name_(file_name), input_file_(NULL), img_(NULL), start_(start), in YUVVideoSource()
39 vpx_img_free(img_); in ~YUVVideoSource()
61 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img()
80 vpx_img_free(img_); in SetSize()
81 img_ = vpx_img_alloc(NULL, format, width, height, 1); in SetSize()
82 ASSERT_TRUE(img_ != NULL); in SetSize()
103 if (fread(img_->img_data, raw_size_, 1, input_file_) == 0) { in FillFrame()
111 vpx_image_t *img_; variable
H A Dvp9_scale_test.cc42 vp9_scale_and_extend_frame_c(&img_, &ref_img_, filter_type, phase_scaler); in ReferenceScaleFrame()
47 scale_fn_(&img_, &dst_img_, filter_type, phase_scaler)); in ScaleFrame()
H A Dvpx_scale_test.h46 FillPlane(img_.y_buffer, img_.y_crop_width, img_.y_crop_height, in ResetImages()
47 img_.y_stride); in ResetImages()
48 FillPlane(img_.u_buffer, img_.uv_crop_width, img_.uv_crop_height, in ResetImages()
50 FillPlane(img_.v_buffer, img_.uv_crop_width, img_.uv_crop_height, in ResetImages()
72 FillPlaneExtreme(img_.y_buffer, img_.y_crop_width, img_.y_crop_height, in ResetScaleImages()
74 FillPlaneExtreme(img_.u_buffer, img_.uv_crop_width, img_.uv_crop_height, in ResetScaleImages()
76 FillPlaneExtreme(img_.v_buffer, img_.uv_crop_width, img_.uv_crop_height, in ResetScaleImages()
172 img_.y_buffer[x + y * img_.y_stride]; in ReferenceCopyFrame()
179 img_.u_buffer[x + y * img_.uv_stride]; in ReferenceCopyFrame()
181 img_.v_buffer[x + y * img_.uv_stride]; in ReferenceCopyFrame()
[all …]
H A Dvideo_source.h136 : img_(NULL), limit_(100), width_(80), height_(64), in DummyVideoSource()
141 virtual ~DummyVideoSource() { vpx_img_free(img_); } in ~DummyVideoSource()
153 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img()
188 if (img_) memset(img_->img_data, 0, raw_sz_); in FillFrame()
192 vpx_img_free(img_); in ReallocImage()
193 img_ = vpx_img_alloc(NULL, format_, width_, height_, 32); in ReallocImage()
194 raw_sz_ = ((img_->w + 31) & ~31) * img_->h * img_->bps / 8; in ReallocImage()
197 vpx_image_t *img_; variable
222 if (img_) { in FillFrame()
224 for (size_t i = 0; i < raw_sz_; ++i) img_->img_data[i] = rnd_.Rand8(); in FillFrame()
[all …]
H A Dvpx_scale_test.cc46 void ExtendBorder() { ASM_REGISTER_STATE_CHECK(extend_fn_(&img_)); } in ExtendBorder()
54 CompareImages(img_); in RunTest()
77 ASM_REGISTER_STATE_CHECK(copy_frame_fn_(&img_, &dst_img_)); in CopyFrame()
H A Dy4m_video_source.h26 : file_name_(file_name), input_file_(NULL), img_(new vpx_image_t()), in Y4mVideoSource()
31 vpx_img_free(img_.get()); in ~Y4mVideoSource()
65 return (frame_ < limit_) ? img_.get() : NULL; in img()
85 y4m_input_fetch_frame(&y4m_, input_file_, img_.get()); in FillFrame()
95 tmp = other->img_.release(); in SwapBuffers()
96 other->img_.reset(img_.release()); in SwapBuffers()
97 img_.reset(tmp); in SwapBuffers()
112 std::unique_ptr<vpx_image_t> img_; variable
/dports/www/firefox/firefox-99.0/toolkit/crashreporter/google-breakpad/src/common/windows/
H A Dpe_util.cc106 explicit AutoImage(PLOADED_IMAGE img) : img_(img) {} in AutoImage()
108 if (img_) in ~AutoImage()
109 ImageUnload(img_); in ~AutoImage()
112 operator PLOADED_IMAGE() { return img_; } in operator PLOADED_IMAGE()
113 PLOADED_IMAGE operator->() { return img_; } in operator ->()
116 PLOADED_IMAGE img_; member in __anon051c47890111::AutoImage
/dports/www/firefox/firefox-99.0/third_party/jpeg-xl/lib/jxl/
H A Ddct_util.h58 img_ = Image3<T>(xsize, ysize); in ACImageT()
64 return ACPtr(img_.PlaneRow(c, y) + xbase); in PlaneRow()
67 return ConstACPtr(img_.PlaneRow(c, y) + xbase); in PlaneRow()
70 size_t PixelsPerRow() const override { return img_.PixelsPerRow(); } in PixelsPerRow()
72 void ZeroFill() override { ZeroFillImage(&img_); } in ZeroFill()
74 void ZeroFillPlane(size_t c) override { ZeroFillImage(&img_.Plane(c)); } in ZeroFillPlane()
77 return img_.xsize() == 0 || img_.ysize() == 0; in IsEmpty()
81 Image3<T> img_;
H A Ddec_reconstruct.cc536 img_ = img; in Init()
544 img_ = &img3_->Plane(c); in Process3()
549 JXL_DASSERT(img_); in Process()
555 float* JXL_RESTRICT row = img_->Row(y + y0_); in Process()
566 float* JXL_RESTRICT row = img_->Row(y + y0_) + x1_; in Process()
581 ImageF* img_ = nullptr; member in jxl::__anonb9e0d5dc0211::EnsurePaddingInPlaceRowByRow
/dports/www/firefox/firefox-99.0/third_party/aom/test/
H A Dy4m_video_source.h26 : file_name_(file_name), input_file_(NULL), img_(new aom_image_t()), in Y4mVideoSource()
31 aom_img_free(img_.get()); in ~Y4mVideoSource()
65 return (frame_ < limit_) ? img_.get() : NULL; in img()
85 y4m_input_fetch_frame(&y4m_, input_file_, img_.get()); in FillFrame()
95 tmp = other->img_.release(); in SwapBuffers()
96 other->img_.reset(img_.release()); in SwapBuffers()
97 img_.reset(tmp); in SwapBuffers()
112 testing::internal::scoped_ptr<aom_image_t> img_; variable
H A Dyuv_video_source.h31 : file_name_(file_name), input_file_(NULL), img_(NULL), start_(start), in YUVVideoSource()
40 aom_img_free(img_); in ~YUVVideoSource()
61 virtual aom_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img()
80 aom_img_free(img_); in SetSize()
81 img_ = aom_img_alloc(NULL, format, width, height, 1); in SetSize()
82 ASSERT_TRUE(img_ != NULL); in SetSize()
101 if (fread(img_->img_data, raw_size_, 1, input_file_) == 0) { in FillFrame()
109 aom_image_t *img_; variable
H A Dvideo_source.h138 : img_(NULL), limit_(100), width_(80), height_(64), in DummyVideoSource()
143 virtual ~DummyVideoSource() { aom_img_free(img_); } in ~DummyVideoSource()
155 virtual aom_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img()
190 if (img_) memset(img_->img_data, 0, raw_sz_); in FillFrame()
194 aom_img_free(img_); in ReallocImage()
195 img_ = aom_img_alloc(NULL, format_, width_, height_, 32); in ReallocImage()
196 raw_sz_ = ((img_->w + 31) & ~31) * img_->h * img_->bps / 8; in ReallocImage()
199 aom_image_t *img_; variable
224 if (img_) { in FillFrame()
226 for (size_t i = 0; i < raw_sz_; ++i) img_->img_data[i] = rnd_.Rand8(); in FillFrame()
[all …]
/dports/www/firefox/firefox-99.0/media/libvpx/libvpx/test/
H A Dvideo_source.h136 : img_(NULL), limit_(100), width_(80), height_(64), in DummyVideoSource()
141 virtual ~DummyVideoSource() { vpx_img_free(img_); } in ~DummyVideoSource()
153 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img()
188 if (img_) memset(img_->img_data, 0, raw_sz_); in FillFrame()
192 vpx_img_free(img_); in ReallocImage()
193 img_ = vpx_img_alloc(NULL, format_, width_, height_, 32); in ReallocImage()
194 raw_sz_ = ((img_->w + 31) & ~31) * img_->h * img_->bps / 8; in ReallocImage()
197 vpx_image_t *img_; variable
222 if (img_) { in FillFrame()
224 for (size_t i = 0; i < raw_sz_; ++i) img_->img_data[i] = rnd_.Rand8(); in FillFrame()
[all …]
H A Dvpx_scale_test.cc46 void ExtendBorder() { ASM_REGISTER_STATE_CHECK(extend_fn_(&img_)); } in ExtendBorder()
54 CompareImages(img_); in RunTest()
77 ASM_REGISTER_STATE_CHECK(copy_frame_fn_(&img_, &dst_img_)); in CopyFrame()
H A Dy4m_video_source.h26 : file_name_(file_name), input_file_(NULL), img_(new vpx_image_t()), in Y4mVideoSource()
31 vpx_img_free(img_.get()); in ~Y4mVideoSource()
65 return (frame_ < limit_) ? img_.get() : NULL; in img()
85 y4m_input_fetch_frame(&y4m_, input_file_, img_.get()); in FillFrame()
95 tmp = other->img_.release(); in SwapBuffers()
96 other->img_.reset(img_.release()); in SwapBuffers()
97 img_.reset(tmp); in SwapBuffers()
112 std::unique_ptr<vpx_image_t> img_; variable
H A Dvpx_scale_test.h46 FillPlane(img_.y_buffer, img_.y_crop_width, img_.y_crop_height, in ResetImages()
47 img_.y_stride); in ResetImages()
48 FillPlane(img_.u_buffer, img_.uv_crop_width, img_.uv_crop_height, in ResetImages()
50 FillPlane(img_.v_buffer, img_.uv_crop_width, img_.uv_crop_height, in ResetImages()
72 FillPlaneExtreme(img_.y_buffer, img_.y_crop_width, img_.y_crop_height, in ResetScaleImages()
74 FillPlaneExtreme(img_.u_buffer, img_.uv_crop_width, img_.uv_crop_height, in ResetScaleImages()
76 FillPlaneExtreme(img_.v_buffer, img_.uv_crop_width, img_.uv_crop_height, in ResetScaleImages()
172 img_.y_buffer[x + y * img_.y_stride]; in ReferenceCopyFrame()
179 img_.u_buffer[x + y * img_.uv_stride]; in ReferenceCopyFrame()
181 img_.v_buffer[x + y * img_.uv_stride]; in ReferenceCopyFrame()
[all …]
H A Dyuv_video_source.h30 : file_name_(file_name), input_file_(NULL), img_(NULL), start_(start), in YUVVideoSource()
39 vpx_img_free(img_); in ~YUVVideoSource()
61 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img()
80 vpx_img_free(img_); in SetSize()
81 img_ = vpx_img_alloc(NULL, format, width, height, 1); in SetSize()
82 ASSERT_TRUE(img_ != NULL); in SetSize()
103 if (fread(img_->img_data, raw_size_, 1, input_file_) == 0) { in FillFrame()
111 vpx_image_t *img_; variable
H A Dvp9_scale_test.cc42 vp9_scale_and_extend_frame_c(&img_, &ref_img_, filter_type, phase_scaler); in ReferenceScaleFrame()
47 scale_fn_(&img_, &dst_img_, filter_type, phase_scaler)); in ScaleFrame()
/dports/www/firefox-esr/firefox-91.8.0/third_party/aom/test/
H A Dvideo_source.h138 : img_(NULL), limit_(100), width_(80), height_(64), in DummyVideoSource()
143 virtual ~DummyVideoSource() { aom_img_free(img_); } in ~DummyVideoSource()
155 virtual aom_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img()
190 if (img_) memset(img_->img_data, 0, raw_sz_); in FillFrame()
194 aom_img_free(img_); in ReallocImage()
195 img_ = aom_img_alloc(NULL, format_, width_, height_, 32); in ReallocImage()
196 raw_sz_ = ((img_->w + 31) & ~31) * img_->h * img_->bps / 8; in ReallocImage()
199 aom_image_t *img_; variable
224 if (img_) { in FillFrame()
226 for (size_t i = 0; i < raw_sz_; ++i) img_->img_data[i] = rnd_.Rand8(); in FillFrame()
[all …]

12345678910>>...16