HomeSort by relevance Sort by last modified time
    Searched refs:width_ (Results 1 - 25 of 141) sorted by null

1 2 3 4 5 6

  /external/webrtc/webrtc/tools/converter/
converter.h 33 int width_; // Width 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);
53 return width_*4;
58 return width_;
63 return (width_+1)/2;
68 return (width_+1)/2;
73 return width_*height_*4;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
h264_sps_parser.h 25 uint16_t width() { return width_; }
32 uint16_t width_; member in class:webrtc::H264SpsParser
  /external/webrtc/webrtc/common_video/libyuv/
libyuv_unittest.cc 87 const int width_; member in class:webrtc::TestLibYuv
97 width_(352),
99 size_y_(width_ * height_),
100 size_uv_(((width_ + 1) / 2) * ((height_ + 1) / 2)),
118 width_, height_,
119 width_, (width_ + 1) / 2,
120 (width_ + 1) / 2));
145 EXPECT_EQ(0, res_i420_frame.CreateEmptyFrame(width_, height_, width_,
    [all...]
scaler_unittest.cc 40 const int width_; member in class:webrtc::TestScaler
51 width_(352),
52 half_width_(width_ / 2),
55 size_y_(width_ * height_),
57 frame_length_(CalcBufferSize(kI420, width_, height_)) {
66 test_frame_.CreateEmptyFrame(width_, height_,
67 width_, half_width_, half_width_);
96 EXPECT_EQ(0, test_scaler_.Set(width_, height_,
106 width_, height_,
107 width_, half_width_, half_width_)
    [all...]
  /external/webrtc/webrtc/modules/video_processing/test/
content_metrics_test.cc 28 ca__c.Initialize(width_, height_);
29 ca__sse.Initialize(width_, height_);
35 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
video_processing_unittest.cc 61 width_(352),
62 half_width_((width_ + 1) / 2),
64 size_y_(width_ * height_),
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_
    [all...]
video_processing_unittest.h 37 const int width_; member in class:webrtc::VideoProcessingTest
  /external/webrtc/webrtc/test/
fake_texture_frame.h 42 new rtc::RefCountedObject<I420Buffer>(width_, height_));
44 int half_width = (width_ + 1) / 2;
45 memset(buffer->MutableData(kYPlane), 0, height_ * width_);
  /external/autotest/client/deps/glbench/src/
textureupdatetest.cc 33 glTexImage2D(GL_TEXTURE_2D, 0, texel_gl_format_, width_, height_,
38 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width_, height_,
textureuploadtest.cc 30 glTexImage2D(GL_TEXTURE_2D, 0, texel_gl_format_, width_, height_,
35 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width_, height_,
texturetest.cc 95 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);
texturereusetest.cc 35 glTexImage2D(GL_TEXTURE_2D, 0, texel_gl_format_, width_, height_,
40 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width_, height_,
texturetest.h 36 GLuint width_; member in class:glbench::TextureTest
  /external/webrtc/webrtc/modules/desktop_capture/
differ.h 34 int width() { return width_; }
66 int width_; member in class:webrtc::Differ
desktop_geometry.h 53 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
  /external/skia/src/images/
bmpdecoderhelper.cpp 48 width_ = GetInt();
63 width_ = GetShort();
72 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) {
75 if (width_ * height_ > max_pixels) {
129 rowLen = width_ * 4;
132 rowLen = width_ * 3;
134 rowLen = width_ * 2;
136 rowLen = width_;
138 rowLen = width_ / 2
    [all...]
  /external/webp/src/dec/
alphai.h 28 int width_; member in struct:ALPHDecoder
  /external/webrtc/webrtc/modules/video_processing/
video_denoiser.h 30 int width_; member in class:webrtc::VideoDenoiser
content_analysis.cc 23 width_(0),
58 if (width_ != inputFrame.width() || height_ != inputFrame.height()) {
73 memcpy(prev_frame_, orig_frame_, width_ * height_);
92 width_ = 0;
100 width_ = width;
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.
160 int sizej = width_;
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
gl_frame.cpp 40 width_(0),
58 if (width_ == 0 && height_ == 0) {
82 width_ = 0;
88 width_ = width;
197 target->Init(width_, height_);
205 } else if (frame && frame->width_ == width_ && frame->height_ == height_) {
215 return width_ * height_ * 4;
310 width_,
352 width_,
    [all...]
  /external/webrtc/talk/media/base/
yuvframegenerator.cc 52 width_ = width;
55 int size = width_ * height_;
62 ASSERT(width_ >= kBarcodeBackgroundWidth);
80 int size = width_ * height_;
86 DrawLandscape(y_data_, width_, height_);
87 DrawGradientX(u_data_, width_/2, height_/2);
88 DrawGradientY(v_data_, width_/2, height_/2);
89 DrawMovingLineX(u_data_, width_/2, height_/2, frame_index_);
90 DrawMovingLineY(v_data_, width_/2, height_/2, frame_index_);
91 DrawBouncingCube(y_data_, width_, height_, frame_index_)
    [all...]
  /external/webrtc/talk/media/devices/
gtkvideorenderer.h 68 int width_; member in class:cricket::GtkVideoRenderer
  /external/webrtc/webrtc/test/gl/
gl_renderer.h 44 size_t width_, height_, buffer_size_; member in class:webrtc::test::GlRenderer
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
i420_video_source.h 34 width_(0),
38 // This initializes raw_sz_, width_, height_ and allocates an img.
84 if (width != width_ || height != height_) {
88 width_ = width;
110 unsigned int width_; member in class:libvpx_test::I420VideoSource
  /external/ceres-solver/examples/
pgm_image.h 87 int height_, width_; member in class:ceres::examples::PGMImage
95 : height_(height), width_(width), data_(width*height, 0.0) {
102 width_ = 0;
115 return width_;
125 return width_ * height_;
141 CHECK(index < width_ * height_);
149 CHECK(index < width_ * height_);
156 return x + width_*y;
191 outputfile << width_ << ' ' << height_ << " 255 " << std::endl;
194 int num_pixels = width_*height_
    [all...]

Completed in 489 milliseconds

1 2 3 4 5 6