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

1 2 3

  /hardware/qcom/msm8x26/kernel-headers/media/
msm_media_info.h 30 #define VENUS_Y_STRIDE(_color_fmt, _width) MSM_MEDIA_ALIGN(_width, 128)
31 #define VENUS_UV_STRIDE(_color_fmt, _width) MSM_MEDIA_ALIGN(_width, 128)
32 #define VENUS_Y_SCANLINES(_color_fmt, _width) MSM_MEDIA_ALIGN(_width, 32)
34 #define VENUS_UV_SCANLINES(_color_fmt, _width) MSM_MEDIA_ALIGN(_width, 16)
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_SCA (…)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
video_source.cc 20 _width(352),
32 _width(0),
47 _width(width),
61 return webrtc::CalcBufferSize(_type, _width, _height);
92 _width = 128;
96 _width = 160;
100 _width = 176;
104 _width = 320;
108 _width = 320;
112 _width = 352
    [all...]
codec_database_test.cc 43 _width(0),
58 _width = args.width;
61 _lengthSourceFrame = 3*_width*_height/2;
112 _encodeCompleteCallback->SetFrameDimensions(_width, _height);
119 int half_width = (_width + 1) / 2;
121 int size_y = _width * _height;
126 _width, _height,
127 _width, half_width, half_width);
230 receiveCodec.width = _width;
255 sendCodec.width = _width;
    [all...]
codec_database_test.h 44 uint16_t _width; member in class:CodecDataBaseTest
generic_codec_test.cc 48 _width(0),
73 _width = args.width;
76 _lengthSourceFrame = 3*_width*_height/2;
151 int half_width = (_width + 1) / 2;
153 int size_y = _width * _height;
158 _width, _height,
159 _width, half_width, half_width);
183 sendCodec.width = _width;
206 _width, _height,
207 _width, half_width, half_width)
    [all...]
video_source.h 63 uint16_t GetWidth() const { return _width; }
76 uint16_t _width; member in class:VideoSource
media_opt_test.cc 74 _width(0),
107 _width = args.width;
165 _lengthSourceFrame = 3*_width*_height/2;
267 sendCodec.width = _width;
287 encodeCompleteCallback->SetFrameDimensions(_width, _height);
313 int half_width = (_width + 1) / 2;
315 int size_y = _width * _height;
325 _width, _height,
326 _width, half_width, half_width);
386 sources.push_back(new const VideoSource(_inname, _width, _height))
    [all...]
normal_test.cc 208 _width = args.width;
216 _width << "x" << _height << "_" << _frameRate << "Hz_P420.yuv";
223 _lengthSourceFrame = 3*_width*_height/2;
252 _sendCodec.width = static_cast<uint16_t>(_width);
270 int size_y = _width * _height;
271 int half_width = (_width + 1) / 2;
274 sourceFrame.CreateEmptyFrame(_width, _height,
275 _width, half_width, half_width);
292 _width, _height,
293 _width, half_width, half_width)
    [all...]
test_callbacks.h 69 _width = width;
85 int32_t _width; member in class:webrtc::VCMEncodeCompleteCallback
124 _width = width;
133 int16_t _width; member in class:webrtc::VCMRTPEncodeCompleteCallback
normal_test.h 96 int Width() const { return _width; };
125 int _width; member in class:NormalTest
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
normal_test.cc 112 _width = 352;
113 _halfWidth = (_width + 1) / 2;
116 _sizeY = _width * _height;
119 CodecSettings(_width, _height, 30, _bitRate);
122 _inputVideoBuffer.CreateEmptyFrame(_width, _height,
123 _width, _halfWidth, _halfWidth);
124 _decodedVideoBuffer.CreateEmptyFrame(_width, _height,
125 _width, _halfWidth, _halfWidth);
202 _width, _height,
203 _width, _halfWidth, _halfWidth)
    [all...]
video_source.cc 21 _width(352),
38 if (GetWidthHeight(size, _width, _height) != 0) {
47 _width(width),
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);
242 ASSERT_TRUE(target.GetWidth() == _width &&
video_source.h 61 int GetWidth() const { return _width; }
88 int _width; member in class:VideoSource
test.cc 78 _width = _inst.width;
79 _halfWidth = (_width + 1) / 2;
82 _sizeY = _width * _height;
test.h 65 int _width; member in class:CodecTest
  /development/perftests/panorama/feature_mos/src/mosaic/
MosaicTypes.h 78 MosaicFrame(int _width, int _height, bool allocate=true)
80 width = _width;
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/i420/main/source/
i420.cc 138 I420Decoder::I420Decoder() : _decodedImage(), _width(0), _height(0),
160 _width = codecSettings->width;
193 _width = width;
197 uint32_t req_length = CalcBufferSize(kI420, _width, _height)
204 int half_width = (_width + 1) / 2;
205 _decodedImage.CreateEmptyFrame(_width, _height,
206 _width, half_width, half_width);
208 int ret = ConvertToI420(kI420, buffer, 0, 0, _width, _height, 0, kRotateNone,
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
MosaicTypes.h 78 MosaicFrame(int _width, int _height, bool allocate=true)
80 width = _width;
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 78 MosaicFrame(int _width, int _height, bool allocate=true)
80 width = _width;
  /external/chromium_org/third_party/webrtc/modules/video_render/linux/
video_x11_channel.cc 27 _width(DEFAULT_RENDER_FRAME_WIDTH),
49 if (_width != videoFrame.width() || _height
88 XShmPutImage(_display, _window, _gc, _image, 0, 0, _xPos, _yPos, _width,
98 width = _width;
203 if (CreateLocalRenderer(_width, _height) == -1)
247 _width = width;
252 &_shminfo, _width, _height); // this parameter needs to be the same for some reason.
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/testbed/
tb_I420_codec.cc 200 _decodedImage(), _width(0), _height(0), _inited(false),
229 _width = inst->width;
231 int half_width = (_width + 1 ) / 2 ;
232 _decodedImage.CreateEmptyFrame(_width, _height,
233 _width, half_width, half_width);
265 webrtc::CalcBufferSize(webrtc::kI420,_width,_height)) {
270 _width, _height,
  /external/opencv/otherlibs/highgui/
cvcap_socket.cpp 87 virtual bool open(const char* _address, const char* _port, int _width, int _height);
105 bool CVCapture_Socket::open(const char* _address, const char* _port, int _width, int _height)
115 width = _width;
  /external/chromium_org/third_party/webrtc/modules/interface/
module_common_types.h 482 uint32_t Width() const { return _width; }
490 void SetWidth(const uint32_t width) { _width = width; }
513 uint32_t _width; member in class:webrtc::VideoFrame
524 _width(0),
566 uint32_t tmpWidth = _width;
571 _width = videoFrame._width;
576 videoFrame._width = tmpWidth;
616 _width = videoFrame._width;
    [all...]
  /external/webrtc/src/modules/interface/
module_common_types.h 499 WebRtc_UWord32 Width() const {return _width;}
507 void SetWidth(const WebRtc_UWord32 width) {_width = width;}
531 WebRtc_UWord32 _width; member in class:webrtc::VideoFrame
543 _width(0),
601 WebRtc_UWord32 tmpWidth = _width;
606 _width = videoFrame._width;
611 videoFrame._width = tmpWidth;
660 _width = videoFrame._width;
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/i420/main/interface/
i420.h 160 int _width; member in class:webrtc::I420Decoder

Completed in 403 milliseconds

1 2 3