Searched refs:height_ (Results 1 - 25 of 119) sorted by relevance

12345

/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dh264_sps_parser.h26 uint16_t height() { return height_; }
33 uint16_t height_; member in class:webrtc::H264SpsParser
/external/webrtc/webrtc/common_video/libyuv/
H A Dscaler_unittest.cc42 const int height_; member in class:webrtc::TestScaler
53 height_(288),
54 half_height_(height_ / 2),
55 size_y_(width_ * height_),
57 frame_length_(CalcBufferSize(kI420, width_, height_)) {
66 test_frame_.CreateEmptyFrame(width_, height_,
96 EXPECT_EQ(0, test_scaler_.Set(width_, height_,
106 width_, height_,
109 EXPECT_GT(width_ * height_, test_frame2.allocated_size(kYPlane));
130 width_, height_,
[all...]
H A Dlibyuv_unittest.cc88 const int height_; member in class:webrtc::TestLibYuv
98 height_(288),
99 size_y_(width_ * height_),
100 size_uv_(((width_ + 1) / 2) * ((height_ + 1) / 2)),
118 width_, height_,
145 EXPECT_EQ(0, res_i420_frame.CreateEmptyFrame(width_, height_, width_,
153 height_, 0, kVideoRotation_0, &res_i420_frame));
163 rtc::scoped_ptr<uint8_t[]> res_rgb_buffer2(new uint8_t[width_ * height_ * 3]);
168 res_i420_frame.CreateEmptyFrame(width_, height_, stride_y,
173 height_,
[all...]
/external/webrtc/webrtc/tools/converter/
H A Dconverter.h34 int height_; // Height of the video (respectively of the RGBA frames). member in class:webrtc::test::Converter
38 return width_*height_;
43 return ((width_+1)/2)*((height_)/2);
48 return ((width_+1)/2)*((height_)/2);
73 return width_*height_*4;
/external/webrtc/webrtc/modules/video_processing/test/
H A Dcontent_metrics_test.cc28 ca__c.Initialize(width_, height_);
29 ca__sse.Initialize(width_, height_);
35 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
H A Dvideo_processing_unittest.cc63 height_(288),
64 size_y_(width_ * height_),
65 size_uv_(half_width_ * ((height_ + 1) / 2)),
66 frame_length_(CalcBufferSize(kI420, width_, height_)) {}
72 ASSERT_EQ(0, video_frame_.CreateEmptyFrame(width_, height_, width_,
122 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
141 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
156 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
177 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
242 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
[all...]
H A Dbrightness_detection_test.cc29 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
55 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
61 for (int yIdx = 0; yIdx < width_ * height_; yIdx++) {
92 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
98 for (int yIdx = 0; yIdx < width_ * height_; yIdx++) {
/external/webrtc/webrtc/test/
H A Dfake_texture_frame.h42 new rtc::RefCountedObject<I420Buffer>(width_, height_));
43 int half_height = (height_ + 1) / 2;
45 memset(buffer->MutableData(kYPlane), 0, height_ * width_);
/external/autotest/client/deps/glbench/src/
H A Dtextureupdatetest.cc33 glTexImage2D(GL_TEXTURE_2D, 0, texel_gl_format_, width_, height_,
38 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width_, height_,
H A Dtextureuploadtest.cc30 glTexImage2D(GL_TEXTURE_2D, 0, texel_gl_format_, width_, height_,
35 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width_, height_,
H A Dtexturetest.cc95 width_ = height_ = sizes[j];
96 const unsigned int buffer_size = width_ * height_ * texel_size;
103 glTexImage2D(GL_TEXTURE_2D, 0, texel_gl_format_, width_, height_, 0,
107 width_, height_, texel_size);
109 if (IS_NOT_POWER_OF_2(width_) || IS_NOT_POWER_OF_2(height_)) {
118 error, width_, height_, texel_size);
H A Dtexturereusetest.cc35 glTexImage2D(GL_TEXTURE_2D, 0, texel_gl_format_, width_, height_,
40 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width_, height_,
H A Dtexturetest.h37 GLuint height_; member in class:glbench::TextureTest
/external/webp/src/dec/
H A Dalphai.h29 int height_; member in struct:ALPHDecoder
/external/skia/src/images/
H A Dbmpdecoderhelper.cpp49 height_ = GetInt();
64 height_ = GetShort();
68 if (height_ < 0) {
69 height_ = -height_;
72 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) {
75 if (width_ * height_ > max_pixels) {
161 if (!rle && (pos_ + (rowLen * height_) > len_ + 1)) {
165 output_ = callback->SetSize(width_, height_);
[all...]
/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.h53 DesktopSize() : width_(0), height_(0) {}
55 : width_(width), height_(height) {
59 int32_t height() const { return height_; }
61 bool is_empty() const { return width_ <= 0 || height_ <= 0; }
64 return width_ == other.width_ && height_ == other.height_;
69 height_ = height;
74 int32_t height_; member in class:webrtc::DesktopSize
H A Ddiffer.h35 int height() { return height_; }
67 int height_; member in class:webrtc::Differ
H A Ddiffer.cc23 height_ = height;
30 diff_info_height_ = ((height_ + kBlockSize - 1) / kBlockSize) + 1;
54 int y_full_blocks = height_ / kBlockSize;
58 int partial_row_height = height_ - (y_full_blocks * kBlockSize);
196 if (top + height > height_) {
197 height = height_ - top;
/external/webrtc/webrtc/modules/video_processing/
H A Dvideo_denoiser.h31 int height_; member in class:webrtc::VideoDenoiser
H A Dcontent_analysis.cc24 height_(0),
58 if (width_ != inputFrame.width() || height_ != inputFrame.height()) {
73 memcpy(prev_frame_, orig_frame_, width_ * height_);
93 height_ = 0;
101 height_ = height;
109 if ((height_ >= 576) && (width_ >= 704)) {
113 if ((height_ >= 1080) && (width_ >= 1920)) {
127 if (width_ <= 32 || height_ <= 32) {
137 prev_frame_ = new uint8_t[width_ * height_]; // Y only.
159 int sizei = height_;
[all...]
/external/webrtc/webrtc/test/mac/
H A Dvideo_renderer_mac.mm23 int height_;
41 height_ = height;
59 nextYOrigin_ += height_;
61 if (nextYOrigin_ + height_ > screenFrame.size.height) {
67 NSRect windowFrame = NSMakeRect(xOrigin, yOrigin, width_, height_);
73 NSRect viewFrame = NSMakeRect(0, 0, width_, height_);
/external/webrtc/talk/media/devices/
H A Dyuvframescapturer.cc100 // TODO(shaowei): allow width_ and height_ to be configurable.
104 height_(480),
115 int size = width_ * height_;
117 frame_generator_ = new YuvFrameGenerator(width_, height_, true);
124 captured_frame_.height = height_;
128 VideoFormat format(width_, height_, VideoFormat::kMinimumInterval,
/external/ceres-solver/examples/
H A Dpgm_image.h87 int height_, width_; member in class:ceres::examples::PGMImage
95 : height_(height), width_(width), data_(width*height, 0.0) {
101 height_ = 0;
120 return height_;
125 return width_ * height_;
141 CHECK(index < width_ * height_);
149 CHECK(index < width_ * height_);
191 outputfile << width_ << ' ' << height_ << " 255 " << std::endl;
194 int num_pixels = width_*height_;
246 !GetIgnoreComment(&inputfile, height_) ||
[all...]
/external/webrtc/webrtc/test/linux/
H A Dglx_renderer.cc25 height_(height),
64 width_, height_, 0, vi->depth, InputOutput,
89 Resize(width_, height_);
121 height_ = height;
125 GlRenderer::ResizeViewport(width_, height_);
136 size_hints->min_aspect.y = size_hints->max_aspect.y = height_;
149 static_cast<size_t>(frame.height()) != height_) {
/external/webrtc/talk/media/base/
H A Dfakevideorenderer.h44 height_(0),
53 height_ = height;
67 frame->GetHeight() != static_cast<size_t>(height_)) {
72 << "x" << height_ << " but received frame of size "
90 return height_;
162 int height_; member in class:cricket::FakeVideoRenderer

Completed in 452 milliseconds

12345