HomeSort by relevance Sort by last modified time
    Searched defs:layer_width (Results 1 - 2 of 2) sorted by null

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
svc_test.cc 342 uint32_t layer_width, layer_height; local
344 &layer_width, &layer_height);
347 res = vpx_svc_get_layer_resolution(NULL, 0, &layer_width, &layer_height);
353 res = vpx_svc_get_layer_resolution(&svc_, 0, &layer_width, NULL);
356 res = vpx_svc_get_layer_resolution(&svc_, 0, &layer_width, &layer_height);
358 EXPECT_EQ(kWidth * 4 / 16, layer_width);
361 res = vpx_svc_get_layer_resolution(&svc_, 1, &layer_width, &layer_height);
363 EXPECT_EQ(kWidth * 8 / 16, layer_width);
  /hardware/qcom/display/msm8996/sdm/libs/core/
display_base.cpp 946 uint32_t layer_width = UINT32(layer->src_rect.right - layer->src_rect.left); local
948 uint32_t layer_area = layer_width * layer_height;
959 uint32_t layer_width = UINT32(layer->src_rect.right - layer->src_rect.left); local
961 LayerRect layer_rect = (LayerRect){0.0f, 0.0f, FLOAT(layer_width), FLOAT(layer_height)};
967 std::swap(layer_width, layer_height);
972 layer_width = UINT32((FLOAT(fb_width) / FLOAT(fb_height)) * layer_height);
974 *new_mixer_width = layer_width;
    [all...]

Completed in 92 milliseconds