HomeSort by relevance Sort by last modified time
    Searched full:_height (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
video_source.cc 21 _height(288),
33 _height(0),
48 _height(height),
61 return webrtc::CalcBufferSize(_type, _width, _height);
93 _height = 96;
97 _height = 120;
101 _height = 144;
105 _height = 200;
109 _height = 240;
113 _height = 240
    [all...]
codec_database_test.cc 44 _height(0),
59 _height = args.height;
61 _lengthSourceFrame = 3*_width*_height/2;
112 _encodeCompleteCallback->SetFrameDimensions(_width, _height);
120 int half_height = (_height + 1) / 2;
121 int size_y = _width * _height;
126 _width, _height,
228 receiveCodec.height = _height;
255 sendCodec.height = _height;
295 sourceFrame.CreateEmptyFrame(_width, _height, _width
    [all...]
normal_test.cc 209 _height = args.height;
216 _width << "x" << _height << "_" << _frameRate << "Hz_P420.yuv";
223 _lengthSourceFrame = 3*_width*_height/2;
253 _sendCodec.height = static_cast<uint16_t>(_height);
270 int size_y = _width * _height;
272 int half_height = (_height + 1) / 2;
274 sourceFrame.CreateEmptyFrame(_width, _height,
292 _width, _height,
369 I420PSNRFromFiles(_inname.c_str(), _outname.c_str(), _width, _height,
371 I420SSIMFromFiles(_inname.c_str(), _outname.c_str(), _width, _height,
    [all...]
generic_codec_test.cc 49 _height(0),
74 _height = args.height;
76 _lengthSourceFrame = 3*_width*_height/2;
149 int half_height = (_height + 1) / 2;
150 int size_y = _width * _height;
155 _width, _height,
181 sendCodec.height = _height;
203 _width, _height,
276 sourceFrame.CreateEmptyFrame(_width, _height, _width,
288 _encodeCompleteCallback->SetFrameDimensions(_width, _height);
    [all...]
media_opt_test.cc 75 _height(0),
108 _height = args.height;
165 _lengthSourceFrame = 3*_width*_height/2;
266 sendCodec.height = _height;
287 encodeCompleteCallback->SetFrameDimensions(_width, _height);
314 int half_height = (_height + 1) / 2;
315 int size_y = _width * _height;
325 _width, _height,
386 sources.push_back(new const VideoSource(_inname, _width, _height));
417 _height = (*it)->GetHeight()
    [all...]
video_source.h 64 uint16_t GetHeight() const { return _height; }
77 uint16_t _height; member in class:VideoSource
codec_database_test.h 45 uint16_t _height; member in class:CodecDataBaseTest
test_callbacks.h 70 _height = height;
86 int32_t _height; member in class:webrtc::VCMEncodeCompleteCallback
125 _height = height;
134 int16_t _height; member in class:webrtc::VCMRTPEncodeCompleteCallback
normal_test.h 99 int Height() const { return _height; };
128 int _height; member in class:NormalTest
  /hardware/qcom/msm8x26/kernel-headers/media/
msm_media_info.h 35 #define VENUS_BUFFER_SIZE_UNALIGNED(_color_fmt, _width, _height) ((VENUS_Y_STRIDE(_color_fmt, _width) * VENUS_Y_SCANLINES(_color_fmt, _height)) + (VENUS_UV_STRIDE(_color_fmt, _width) * VENUS_UV_SCANLINES(_color_fmt, _height) + 4096))
36 #define VENUS_BUFFER_SIZE(_color_fmt, _width, _height) MSM_MEDIA_ALIGN(VENUS_BUFFER_SIZE_UNALIGNED(_color_fmt, _width, _height),4096)
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
normal_test.cc 114 _height = 288;
115 _halfHeight = (_height + 1) / 2;
116 _sizeY = _width * _height;
119 CodecSettings(_width, _height, 30, _bitRate);
122 _inputVideoBuffer.CreateEmptyFrame(_width, _height,
124 _decodedVideoBuffer.CreateEmptyFrame(_width, _height,
202 _width, _height,
video_source.cc 22 _height(288),
38 if (GetWidthHeight(size, _width, _height) != 0) {
48 _height(height),
61 return GetSize(_width, _height);
122 return webrtc::CalcBufferSize(_type, _width, _height);
211 (target.GetWidth() == _width && target.GetHeight() == _height && target.GetFrameRate() == _frameRate)))
234 const size_t lengthInFrame = webrtc::CalcBufferSize(_type, _width, _height);
243 target.GetHeight() == _height);
video_source.h 62 int GetHeight() const { return _height; }
89 int _height; member in class:VideoSource
test.h 67 int _height; member in class:CodecTest
test.cc 80 _height = _inst.height;
81 _halfHeight = (_height + 1) / 2;;
82 _sizeY = _width * _height;
  /external/chromium_org/third_party/webrtc/modules/video_render/linux/
video_x11_channel.cc 28 _height(DEFAULT_RENDER_FRAME_HEIGHT), _outWidth(0), _outHeight(0),
49 if (_width != videoFrame.width() || _height
89 _height, True);
99 height = _height;
203 if (CreateLocalRenderer(_width, _height) == -1)
248 _height = height;
252 &_shminfo, _width, _height); // this parameter needs to be the same for some reason.
video_x11_channel.h 75 int32_t _height; // incoming frame height member in class:webrtc::VideoX11Channel
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/i420/main/source/
i420.cc 138 I420Decoder::I420Decoder() : _decodedImage(), _width(0), _height(0),
161 _height = codecSettings->height;
194 _height = height;
197 uint32_t req_length = CalcBufferSize(kI420, _width, _height)
205 _decodedImage.CreateEmptyFrame(_width, _height,
208 int ret = ConvertToI420(kI420, buffer, 0, 0, _width, _height, 0, kRotateNone,
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/testbed/
tb_I420_codec.cc 171 _decodedImage(), _width(0), _height(0), _inited(false),
201 _height = inst->height;
203 _decodedImage.CreateEmptyFrame(_width, _height,
236 webrtc::CalcBufferSize(webrtc::kI420,_width,_height)) {
241 _width, _height,
  /development/perftests/panorama/feature_mos/src/mosaic/
MosaicTypes.h 78 MosaicFrame(int _width, int _height, bool allocate=true)
81 height = _height;
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
MosaicTypes.h 78 MosaicFrame(int _width, int _height, bool allocate=true)
81 height = _height;
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 78 MosaicFrame(int _width, int _height, bool allocate=true)
81 height = _height;
  /external/chromium_org/third_party/webrtc/modules/video_render/mac/
video_render_nsopengl.mm 28 _height( 0),
98 _height != videoFrame.height()) {
114 _height = height;
135 if (width == _width && _height == height)
144 _height = height;
153 _incommingBufferSize = CalcBufferSize(kI420, _width, _height);
154 _bufferSize = CalcBufferSize(kARGB, _width, _height);
181 if (texSize < _width || texSize < _height)
192 _height, // height
251 _height, // heigh
    [all...]
  /external/qemu/android/
loadpng.c 12 void *loadpng(const char *fn, unsigned *_width, unsigned *_height)
121 *_height = height;
151 void *readpng(const unsigned char *base, size_t size, unsigned *_width, unsigned *_height)
252 *_height = height;
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_format_autogen.h 875 GLsizei _height,
882 height = _height;
891 GLsizei _height,
894 ->Init(_target, _level, _internalformat, _width, _height, _bucket_id);
941 GLsizei _height,
950 height = _height;
961 GLsizei _height,
969 _height,
    [all...]

Completed in 388 milliseconds

1 2 3