Searched refs:height (Results 176 - 200 of 679) sorted by relevance

1234567891011>>

/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/inc/
H A Domx_video_encoder.h90 bool dev_is_video_session_supported(OMX_U32 width, OMX_U32 height);
92 OMX_U32 height);
/hardware/intel/common/libva/va/x11/
H A Ddri2_util.c55 int height; member in struct:dri2_drawable
104 xrect.height = dri2_drawable->height;
130 &dri2_drawable->width, &dri2_drawable->height,
155 dri_drawable->height = dri2_drawable->height;
/hardware/intel/common/utils/media_resource_manager/omx_adaptor/
H A DOMX_adaptor.cpp165 unsigned int height = video_def->nFrameHeight; local
167 if (height <= 480) {
169 } else if (height <= 720) {
171 } else if (height <= 1080) {
173 } else if (height <= 1440) {
175 } else if (height <= 2160) {
/hardware/intel/img/hwcomposer/merrifield/include/
H A DVirtualDevice.h76 buffer_handle_t get(uint32_t width, uint32_t height, sp<RefBase>* heldBuffer);
166 void vspPrepare(uint32_t width, uint32_t height);
167 void vspEnable(uint32_t width, uint32_t height);
172 bool getFrameOfSize(uint32_t width, uint32_t height, const IVideoPayloadManager::MetaData& metadata, IVideoPayloadManager::Buffer& info);
173 void setMaxDecodeResolution(uint32_t width, uint32_t height);
188 virtual bool getDisplaySize(int *width, int *height);
/hardware/qcom/display/msm8226/liboverlay/
H A DoverlayMdpRot.cpp55 getBufferSizeAndDimensions(mRotImgInfo.dst.width, mRotImgInfo.dst.height,
64 getBufferSizeAndDimensions(mRotImgInfo.dst.width, mRotImgInfo.dst.height,
107 mRotImgInfo.src.height = whf.h;
113 mRotImgInfo.dst.height = whf.h;
136 utils::swap(mRotImgInfo.dst.width, mRotImgInfo.dst.height);
157 mRotImgInfo.dst.height, mRotImgInfo.dst.format);
/hardware/qcom/display/msm8996/sdm/libs/core/
H A Ddisplay_base.cpp70 // Override x_pixels and y_pixels of frame buffer with mixer width and height
72 fb_config_.y_pixels = mixer_attributes_.height;
182 float layer_mixer_height = FLOAT(mixer_attributes_.height);
195 gpu_target_layer_dst_ypixels > mixer_attributes_.height) {
198 mixer_attributes_.height);
549 out_buffer->height, GetFormatString(out_buffer->format));
603 input_buffer->height, buffer_format, INT(src_roi.left),
640 "-", pipe.pipe_id, input_buffer->width, input_buffer->height,
902 DisplayError DisplayBase::SetMixerResolution(uint32_t width, uint32_t height) { argument
904 return ReconfigureMixer(width, height);
907 GetMixerResolution(uint32_t *width, uint32_t *height) argument
919 ReconfigureMixer(uint32_t width, uint32_t height) argument
1007 uint32_t height = variable_info.y_pixels; local
[all...]
/hardware/qcom/display/msm8996/sdm/libs/hwc/
H A Dhwc_buffer_allocator.cpp64 int height = INT(buffer_config.height); local
87 uint32_t buffer_size = getBufferSizeAndDimensions(width, height, format, alloc_flags,
161 int height = INT(buffer_config.height); local
181 uint32_t buffer_size = getBufferSizeAndDimensions(width, height, format, alloc_flags,
/hardware/qcom/display/msm8960/libexternal/
H A Dexternal.cpp208 property_set("hw.actionsafe.height", actionsafeHeight);
700 int width = 0, height = 0, fps = 0; local
701 getAttrForMode(width, height, fps);
703 ALOGD("ExtDisplay setting xres = %d, yres = %d", width, height);
705 mHwcContext->dpyAttr[HWC_DISPLAY_EXTERNAL].yres = height;
711 void ExternalDisplay::getAttrForMode(int& width, int& height, int& fps) { argument
715 height = 480;
721 height = 480;
727 height = 576;
732 height
[all...]
/hardware/qcom/display/msm8998/sdm/libs/hwc/
H A Dblit_engine_c2d.cpp139 int BlitEngineC2d::AllocateBlitTargetBuffers(uint32_t width, uint32_t height, uint32_t format, argument
142 if (width <= 0 || height <= 0) {
149 INT(height) != blit_target_buffer_[0]->height) {
156 status = alloc_buffer(&blit_target_buffer_[i], width, height, format, usage);
189 buffer.h = hnd->height;
300 // Set the buffer height and width
304 layer_buffer.height = aligned_h;
344 int height = INT(layer->dst_rect.bottom - layer->dst_rect.top); local
353 target_height += height;
[all...]
/hardware/intel/common/utils/ISV/base/
H A Disv_worker.cpp113 status_t ISVWorker::init(uint32_t width, uint32_t height) { argument
159 mHeight = height;
217 status_t ISVWorker::allocSurface(uint32_t* width, uint32_t* height, argument
227 *height = mHeight;
243 vaExtBuf.offsets[1] = stride * *height;
244 vaExtBuf.offsets[2] = vaExtBuf.offsets[1] + (stride / 2) * (*height / 2);
255 // The height of HAL_PIXEL_FORMAT_INTEL_YV12 gralloc buffer has been aligned with 32 pixels.
256 vaExtBuf.offsets[1] = stride * ((*height + 31) & ~31);
257 vaExtBuf.offsets[2] = vaExtBuf.offsets[1] + (stride / 2) * (((*height + 31) & ~31) / 2);
276 vaExtBuf.offsets[1] = stride * *height;
1011 writeNV12(int width, int height, unsigned char *out_buf, int y_pitch, int uv_pitch) argument
[all...]
/hardware/intel/common/libva/test/putsurface/
H A Dputsurface_common.c383 static void update_clipbox(VARectangle *cliprects, int width, int height) argument
391 cliprects[0].y = (rand() % height);
393 cliprects[0].height = (rand() % (height - cliprects[0].y));
396 cliprects[1].y = (rand() % height);
398 cliprects[1].height = (rand() % (height - cliprects[1].y));
400 cliprects[0].x, cliprects[0].y, cliprects[0].width, cliprects[0].height,
401 cliprects[1].x, cliprects[1].y, cliprects[1].width, cliprects[1].height);
406 int width=win_width, height local
[all...]
/hardware/libhardware/tests/hwc/
H A Dcnativewindow.c72 unsigned height; member in struct:CNativeWindow
156 int bottom = buf->height;
291 *value = win->height;
292 TRACE("query window height: %d\n", *value);
342 if ((w == win->width) && (h == win->height)) {
417 win->height = values[1];
445 buf->height = win->height;
449 err = win->gr->alloc(win->gr, win->width, win->height,
453 win->width, win->height, er
[all...]
/hardware/intel/common/libva/test/decode/
H A Dtinyjpeg.c176 int width, height, nr_components, precision; local
188 height = be16_to_cpu(stream+3);
194 width, height,
227 int i, width, height, nr_components, cid, sampling_factor; local
234 height = be16_to_cpu(stream+3);
241 if (width>JPEG_MAX_WIDTH || height>JPEG_MAX_HEIGHT)
242 printf("WARNING:Width and Height (%dx%d) seems suspicious\n", width, height);
245 if (height%16)
246 printf("WARNING:Height need to be a multiple of 16 (current height is %d)\n", height);
864 tinyjpeg_get_size(struct jdec_private *priv, unsigned int *width, unsigned int *height) argument
[all...]
/hardware/qcom/display/msm8998/sdm/libs/core/
H A Ddisplay_base.cpp61 error = Debug::GetMixerResolution(&mixer_attributes_.width, &mixer_attributes_.height);
69 // Override x_pixels and y_pixels of frame buffer with mixer width and height
71 fb_config_.y_pixels = mixer_attributes_.height;
183 float layer_mixer_height = FLOAT(mixer_attributes_.height);
197 gpu_target_layer_dst_ypixels > mixer_attributes_.height) {
200 mixer_attributes_.width, mixer_attributes_.height);
538 out_buffer->height, GetFormatString(out_buffer->format));
598 input_buffer->height, buffer_format, INT(src_roi.left),
638 "-", pipe.pipe_id, input_buffer->width, input_buffer->height,
871 DisplayError DisplayBase::SetMixerResolution(uint32_t width, uint32_t height) { argument
885 GetMixerResolution(uint32_t *width, uint32_t *height) argument
897 ReconfigureMixer(uint32_t width, uint32_t height) argument
1016 uint32_t height = variable_info.y_pixels; local
[all...]
/hardware/intel/common/libmix/videodecoder/
H A DVideoDecoderMPEG4.cpp102 // some container has the incorrect width/height.
110 mVideoFormatInfo.height != (uint32_t)data->codec_data.video_object_layer_height) &&
114 ITRACE("Video size is changed. from %dx%d to %dx%d\n", mVideoFormatInfo.width, mVideoFormatInfo.height,
121 mVideoFormatInfo.height = data->codec_data.video_object_layer_height;
131 || (mVideoFormatInfo.height > mVideoFormatInfo.surfaceHeight);
179 data->picture_data->picture_param.vop_height = mVideoFormatInfo.height;
615 mVideoFormatInfo.width, mVideoFormatInfo.height,
621 data->codec_data.video_object_layer_height = mVideoFormatInfo.height;
624 mVideoFormatInfo.cropBottom = data->codec_data.video_object_layer_height > mVideoFormatInfo.height ?
625 data->codec_data.video_object_layer_height - mVideoFormatInfo.height
[all...]
/hardware/qcom/display/msm8909/libgralloc/
H A Dmapper.cpp328 int height = va_arg(args, int); local
343 hnd->height = height;
384 int *height = va_arg(args, int *); local
392 *height = metadata->bufferDim.sliceHeight;
395 *height = hnd->height;
403 int height = va_arg(args, int); local
411 height, format, *tileEnabled, *alignedWidth,
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/devices/
H A DExternalDevice.cpp291 bool ExternalDevice::getDisplaySize(int *width, int *height) argument
294 return PhysicalDevice::getDisplaySize(width, height);
297 return PhysicalDevice::getDisplaySize(width, height);
299 if (!width || !height)
303 *height = 1080;
/hardware/interfaces/automotive/evs/1.0/default/
H A DEvsDisplay.cpp43 mBuffer.height = 240;
170 mBuffer.width, mBuffer.height, mBuffer.format, 1, mBuffer.usage,
174 result, mBuffer.width, mBuffer.height);
262 android::Rect(mBuffer.width, mBuffer.height),
272 for (unsigned row = 0; row < mBuffer.height; row++) {
/hardware/qcom/display/msm8084/libcopybit/
H A Dc2d2.h314 uint32 height; /* defines height in pixels */ member in struct:__anon1846
324 uint32 height; /* defines height in pixels */ member in struct:__anon1847
342 int32 height; /* height */ member in struct:__anon1848
483 uint32 *width, uint32 *height,
509 * be configured in surface_definition using width, height and stride.
524 * be configured in surface_definition using width, height and stride.
647 uint32 *width, uint32 *height,
[all...]
/hardware/qcom/display/msm8226/libcopybit/
H A Dc2d2.h314 uint32 height; /* defines height in pixels */ member in struct:__anon1924
324 uint32 height; /* defines height in pixels */ member in struct:__anon1925
342 int32 height; /* height */ member in struct:__anon1926
483 uint32 *width, uint32 *height,
509 * be configured in surface_definition using width, height and stride.
524 * be configured in surface_definition using width, height and stride.
647 uint32 *width, uint32 *height,
[all...]
/hardware/qcom/display/msm8909/libcopybit/
H A Dc2d2.h314 uint32 height; /* defines height in pixels */ member in struct:__anon1995
324 uint32 height; /* defines height in pixels */ member in struct:__anon1996
342 int32 height; /* height */ member in struct:__anon1997
483 uint32 *width, uint32 *height,
509 * be configured in surface_definition using width, height and stride.
524 * be configured in surface_definition using width, height and stride.
647 uint32 *width, uint32 *height,
[all...]
/hardware/qcom/display/msm8960/libcopybit/
H A Dc2d2.h314 uint32 height; /* defines height in pixels */ member in struct:__anon2069
324 uint32 height; /* defines height in pixels */ member in struct:__anon2070
342 int32 height; /* height */ member in struct:__anon2071
483 uint32 *width, uint32 *height,
509 * be configured in surface_definition using width, height and stride.
524 * be configured in surface_definition using width, height and stride.
647 uint32 *width, uint32 *height,
[all...]
/hardware/qcom/display/msm8994/libcopybit/
H A Dc2d2.h314 uint32 height; /* defines height in pixels */ member in struct:__anon2135
324 uint32 height; /* defines height in pixels */ member in struct:__anon2136
342 int32 height; /* height */ member in struct:__anon2137
483 uint32 *width, uint32 *height,
509 * be configured in surface_definition using width, height and stride.
524 * be configured in surface_definition using width, height and stride.
647 uint32 *width, uint32 *height,
[all...]
/hardware/qcom/display/msm8996/libcopybit/
H A Dc2d2.h315 uint32 height; /* defines height in pixels */ member in struct:__anon2208
325 uint32 height; /* defines height in pixels */ member in struct:__anon2209
343 int32 height; /* height */ member in struct:__anon2210
485 uint32 *width, uint32 *height,
511 * be configured in surface_definition using width, height and stride.
526 * be configured in surface_definition using width, height and stride.
649 uint32 *width, uint32 *height,
[all...]
/hardware/qcom/display/msm8998/libcopybit/
H A Dc2d2.h315 uint32 height; /* defines height in pixels */ member in struct:__anon2280
325 uint32 height; /* defines height in pixels */ member in struct:__anon2281
343 int32 height; /* height */ member in struct:__anon2282
485 uint32 *width, uint32 *height,
511 * be configured in surface_definition using width, height and stride.
526 * be configured in surface_definition using width, height and stride.
649 uint32 *width, uint32 *height,
[all...]

Completed in 3454 milliseconds

1234567891011>>