Searched refs:width_ (Results 101 - 125 of 177) sorted by path

12345678

/external/chromium_org/third_party/webrtc/common_video/
H A Di420_video_frame.cc20 : width_(0),
36 width_ = width;
60 width_ = width;
72 videoFrame.width_, videoFrame.height_,
96 std::swap(width_, videoFrame->width_);
136 width_ = width;
141 if (CheckDimensions(width_, height,
/external/chromium_org/third_party/webrtc/common_video/libyuv/
H A Dlibyuv_unittest.cc88 const int width_; member in class:webrtc::TestLibYuv
98 width_(352),
100 size_y_(width_ * height_),
101 size_uv_(((width_ + 1 ) / 2) * ((height_ + 1) / 2)),
119 width_, height_,
120 width_, (width_ + 1) / 2,
121 (width_ + 1) / 2));
146 EXPECT_EQ(0,res_i420_frame.CreateEmptyFrame(width_, height_, width_,
[all...]
H A Dscaler_unittest.cc41 const int width_; member in class:webrtc::TestScaler
52 width_(352),
53 half_width_(width_ / 2),
56 size_y_(width_ * height_),
58 frame_length_(CalcBufferSize(kI420, width_, height_)) {
67 test_frame_.CreateEmptyFrame(width_, height_,
68 width_, half_width_, half_width_);
97 EXPECT_EQ(0, test_scaler_.Set(width_, height_,
107 width_, height_,
108 width_, half_width
[all...]
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.h53 DesktopSize() : width_(0), height_(0) {}
55 : width_(width), height_(height) {
58 int32_t width() const { return width_; }
61 bool is_empty() const { return width_ <= 0 || height_ <= 0; }
64 return width_ == other.width_ && height_ == other.height_;
68 width_ = width;
73 int32_t width_; member in class:webrtc::DesktopSize
H A Ddiffer.cc22 width_ = width;
29 diff_info_width_ = ((width_ + kBlockSize - 1) / kBlockSize) + 1;
51 int x_full_blocks = width_ / kBlockSize;
55 int partial_column_width = width_ - (x_full_blocks * kBlockSize);
61 int block_y_stride = (width_ * bytes_per_pixel_) * kBlockSize;
191 if (left + width > width_) {
192 width = width_ - left;
H A Ddiffer.h36 int width() { return width_; }
68 int width_; member in class:webrtc::Differ
H A Ddiffer_unittest.cc34 width_ = width;
38 buffer_size_ = width_ * height_ * bytes_per_pixel_;
40 differ_.reset(new Differ(width_, height_, bytes_per_pixel_, stride_));
194 int width_; member in class:webrtc::DifferTest
343 WritePixel(curr_.get(), width_ - 1, y, 0xff00ff);
345 for (int x = 0; x < width_; x++) {
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dqm_select.cc27 width_(0),
234 width_ = width;
360 qm_->codec_width = width_;
577 static_cast<uint16_t>(fac_width * width_),
639 qm_->codec_width = static_cast<uint16_t>(width_ /
752 width_ = width_ * kFactorWidthSpatial[kOneHalfSpatialUniform];
763 if ((width_ * 3 / 4) % 2 != 0 || (height_ * 3 / 4) % 2 != 0) {
767 if ((width_ * 1 / 2) % 2 != 0 || (height_ * 1 / 2) % 2 != 0) {
825 if ((width_ * height
[all...]
H A Dqm_select.h171 uint16_t width_; member in class:webrtc::VCMQmMethod
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dtest_util.cc89 width_(0),
126 if (out_file_ == NULL || video_frame.width() != width_ ||
132 width_ = video_frame.width();
135 out_filename_, width_, height_, count_);
H A Dtest_util.h97 int width_; member in class:FileOutputFrameReceiver
/external/chromium_org/third_party/webrtc/modules/video_processing/main/source/
H A Dcontent_analysis.cc23 width_(0),
59 if (width_ != inputFrame.width() || height_ != inputFrame.height()) {
74 memcpy(prev_frame_, orig_frame_, width_ * height_);
93 width_ = 0;
101 width_ = width;
110 if ( (height_ >= 576) && (width_ >= 704) ) {
114 if ( (height_ >= 1080) && (width_ >= 1920) ) {
128 if (width_ <= 32 || height_ <= 32) {
138 prev_frame_ = new uint8_t[width_ * height_]; // Y only.
161 int sizej = width_;
[all...]
H A Dcontent_analysis.h70 int width_; member in class:webrtc::VPMContentAnalysis
H A Dcontent_analysis_sse2.cc20 const uint8_t* imgBufO = orig_frame_ + border_*width_ + border_;
21 const uint8_t* imgBufP = prev_frame_ + border_*width_ + border_;
23 const int32_t width_end = ((width_ - 2*border_) & -16) + border_;
73 imgBufO += width_ * skip_num_;
74 imgBufP += width_ * skip_num_;
116 const uint8_t* imgBuf = orig_frame_ + border_*width_;
117 const int32_t width_end = ((width_ - 2 * border_) & -16) + border_;
146 const uint8_t *lineTop = imgBuf - width_ + border_;
148 const uint8_t *lineBot = imgBuf + width_ + border_;
217 imgBuf += width_ * skip_num
[all...]
/external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
H A Dbrightness_detection_test.cc27 width_, height_,
55 width_, height_,
61 for (int yIdx = 0; yIdx < width_ * height_; yIdx++)
95 width_, height_,
101 for (int yIdx = 0; yIdx < width_ * height_; yIdx++)
H A Dcolor_enhancement_test.cc48 width_, height_,
85 refVideoFrame.CreateEmptyFrame(width_, height_,
86 width_, half_width_, half_width_);
95 width_, height_,
100 width_, height_,
124 testVideoFrame.CreateEmptyFrame(width_, height_,
125 width_, half_width_, half_width_);
127 width_, height_, 0, kRotateNone,
H A Dcontent_metrics_test.cc23 ca__c.Initialize(width_,height_);
24 ca__sse.Initialize(width_,height_);
31 width_, height_,
H A Ddeflickering_test.cc60 width_, height_,
H A Dvideo_processing_unittest.cc35 width_(352),
36 half_width_((width_ + 1) / 2),
38 size_y_(width_ * height_),
40 frame_length_(CalcBufferSize(kI420, width_, height_)) {}
46 ASSERT_EQ(0, video_frame_.CreateEmptyFrame(width_, height_, width_,
76 videoFrame.set_width(width_);
94 width_, height_,
106 video_frame_.set_width(width_);
131 width_, height
[all...]
H A Dvideo_processing_unittest.h37 const int width_; member in class:webrtc::VideoProcessingModuleTest
/external/chromium_org/third_party/webrtc/test/
H A Dframe_generator.cc25 : angle_(0.0), width_(width), height_(height) {
31 frame_.CreateEmptyFrame(static_cast<int>(width_),
33 static_cast<int>(width_),
34 static_cast<int>((width_ + 1) / 2),
35 static_cast<int>((width_ + 1) / 2));
48 size_t width_; member in class:webrtc::test::__anon16174::ChromaGenerator
56 : file_(file), width_(width), height_(height) {
61 kI420, static_cast<int>(width_), static_cast<int>(height_));
77 frame_.CreateEmptyFrame(static_cast<int>(width_),
79 static_cast<int>(width_),
97 size_t width_; member in class:webrtc::test::__anon16174::YuvFileGenerator
[all...]
/external/chromium_org/third_party/webrtc/test/gl/
H A Dgl_renderer.cc21 : is_init_(false), buffer_(NULL), width_(0), height_(0) {}
56 width_ = width;
76 if (static_cast<size_t>(frame.width()) != width_ ||
85 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width_, height_, GL_BGRA,
H A Dgl_renderer.h44 size_t width_, height_, buffer_size_; member in class:webrtc::test::GlRenderer
/external/chromium_org/third_party/webrtc/test/linux/
H A Dglx_renderer.cc24 : width_(width),
64 width_, height_, 0, vi->depth, InputOutput,
89 Resize(width_, height_);
120 width_ = width;
125 GlRenderer::ResizeViewport(width_, height_);
135 size_hints->min_aspect.x = size_hints->max_aspect.x = width_;
148 if (static_cast<size_t>(frame.width()) != width_ ||
H A Dglx_renderer.h38 size_t width_, height_; member in class:webrtc::test::GlxRenderer

Completed in 442 milliseconds

12345678