/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp2/parser/ |
D | viddec_mpeg2_frame_attr.c | 37 static inline void viddec_mpeg2_set_default_values(viddec_frame_attributes_t *attrs) in viddec_mpeg2_set_default_values() argument 41 attrs->mpeg2.number_of_frame_center_offsets = 0; in viddec_mpeg2_set_default_values() 44 attrs->mpeg2.frame_center_offset[index].horz = 0; in viddec_mpeg2_set_default_values() 45 attrs->mpeg2.frame_center_offset[index].vert = 0; in viddec_mpeg2_set_default_values() 62 viddec_frame_attributes_t *attrs = &wl->attrs; in viddec_mpeg2_translate_attr() local 65 viddec_mpeg2_set_default_values(attrs); in viddec_mpeg2_translate_attr() 69 attrs->cont_size.height = ((parser->info.seq_ext.vertical_size_extension << 12) in viddec_mpeg2_translate_attr() 71 attrs->cont_size.width = ((parser->info.seq_ext.horizontal_size_extension << 12) in viddec_mpeg2_translate_attr() 75 attrs->mpeg2.repeat_first_field = parser->info.pic_cod_ext.repeat_first_field; in viddec_mpeg2_translate_attr() 78 attrs->mpeg2.temporal_ref = parser->info.pic_hdr.temporal_reference; in viddec_mpeg2_translate_attr() [all …]
|
D | viddec_mpeg2_parse.c | 142 if ((wl->attrs.frame_type != VIDDEC_FRAME_TYPE_I) in viddec_mpeg2_get_error_code() 143 && (wl->attrs.frame_type != VIDDEC_FRAME_TYPE_P) in viddec_mpeg2_get_error_code() 144 && (wl->attrs.frame_type != VIDDEC_FRAME_TYPE_B)) in viddec_mpeg2_get_error_code() 146 wl->attrs.frame_type = VIDDEC_FRAME_TYPE_I; in viddec_mpeg2_get_error_code() 151 if (wl->attrs.frame_type == VIDDEC_FRAME_TYPE_B) in viddec_mpeg2_get_error_code()
|
D | viddec_mpeg2_workload.c | 297 viddec_frame_attributes_t *attrs = &wl->attrs; in viddec_mpeg2_check_unsupported() local 300 unsupported_feature_found |= (attrs->cont_size.height > MPEG2_MAX_CONTENT_HEIGHT); in viddec_mpeg2_check_unsupported() 301 unsupported_feature_found |= (attrs->cont_size.width > MPEG2_MAX_CONTENT_WIDTH); in viddec_mpeg2_check_unsupported()
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/ |
D | viddec_h264_workload.c | 76 viddec_frame_attributes_t *attrs = &wl->attrs; in h264_translate_parser_info_to_frame_attributes() local 81 attrs->cont_size.height = pInfo->img.FrameHeightInMbs*16; in h264_translate_parser_info_to_frame_attributes() 82 attrs->cont_size.width = pInfo->img.PicWidthInMbs*16; in h264_translate_parser_info_to_frame_attributes() 85 attrs->h264.used_for_reference = 0; in h264_translate_parser_info_to_frame_attributes() 86 attrs->h264.top_field_first = 0; in h264_translate_parser_info_to_frame_attributes() 87 attrs->h264.top_field_poc = 0; in h264_translate_parser_info_to_frame_attributes() 88 attrs->h264.bottom_field_poc = 0; in h264_translate_parser_info_to_frame_attributes() 89 attrs->h264.field_pic_flag = 0; in h264_translate_parser_info_to_frame_attributes() 116 …if ((int32_t)attrs->cont_size.height >(pInfo->active_SPS.sps_disp.frame_crop_rect_bottom_offset*Cr… in h264_translate_parser_info_to_frame_attributes() 118 … attrs->cont_size.height -= (pInfo->active_SPS.sps_disp.frame_crop_rect_bottom_offset*CropUnitY); in h264_translate_parser_info_to_frame_attributes() [all …]
|
D | viddec_h264_parse.c | 508 viddec_frame_attributes_t *attrs; in viddec_h264_wkld_done() local 511 attrs = &wl->attrs; in viddec_h264_wkld_done() 513 …if((attrs->cont_size.width < 32) || (attrs->cont_size.width > 2048) || (attrs->cont_size.height < … in viddec_h264_wkld_done() 515 attrs->cont_size.width = 32; in viddec_h264_wkld_done() 516 attrs->cont_size.height = 32; in viddec_h264_wkld_done()
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/ |
D | viddec_vc1_workload.c | 46 viddec_frame_attributes_t *attrs = &wl->attrs; in translate_parser_info_to_frame_attributes() local 51 attrs->cont_size.height = info->metadata.height * 2 + 2; in translate_parser_info_to_frame_attributes() 52 attrs->cont_size.width = info->metadata.width * 2 + 2; in translate_parser_info_to_frame_attributes() 57 attrs->frame_type = vc1_populate_frame_type(info->picLayerHeader.PTypeField1); in translate_parser_info_to_frame_attributes() 58 attrs->bottom_field_type = vc1_populate_frame_type(info->picLayerHeader.PTypeField2); in translate_parser_info_to_frame_attributes() 60 attrs->frame_type = vc1_populate_frame_type(info->picLayerHeader.PTYPE); in translate_parser_info_to_frame_attributes() 61 attrs->bottom_field_type = VIDDEC_FRAME_TYPE_INVALID; //unknown in translate_parser_info_to_frame_attributes() 65 attrs->vc1.tfcntr = info->picLayerHeader.TFCNTR; in translate_parser_info_to_frame_attributes() 68 attrs->vc1.tff = info->picLayerHeader.TFF; in translate_parser_info_to_frame_attributes() 69 attrs->vc1.rptfrm = info->picLayerHeader.RPTFRM; in translate_parser_info_to_frame_attributes() [all …]
|
/hardware/qcom/display/sdm845/gpu_tonemapper/ |
D | EGLImageBuffer.cpp | 33 EGLint attrs[] = {EGL_IMAGE_PRESERVED_KHR, EGL_TRUE, in create_eglImage() local 39 (EGLClientBuffer)(graphicBuffer->getNativeBuffer()), attrs); in create_eglImage()
|
/hardware/qcom/display/msm8998/gpu_tonemapper/ |
D | EGLImageBuffer.cpp | 33 EGLint attrs[] = {EGL_IMAGE_PRESERVED_KHR, EGL_TRUE, in create_eglImage() local 39 (EGLClientBuffer)(graphicBuffer->getNativeBuffer()), attrs); in create_eglImage()
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/include/ |
D | viddec_fw_workload.h | 134 viddec_frame_attributes_t attrs; member
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/ |
D | viddec_mp4_videoobjectlayer.c | 589 memset(&(wl->attrs), 0, sizeof(viddec_frame_attributes_t)); in mp4_Parse_VideoObjectLayer() 591 wl->attrs.cont_size.width = vidObjLay->video_object_layer_width; in mp4_Parse_VideoObjectLayer() 592 wl->attrs.cont_size.height = vidObjLay->video_object_layer_height; in mp4_Parse_VideoObjectLayer()
|
D | viddec_fw_mp4_workload.c | 9 viddec_frame_attributes_t *attr = &(wl->attrs); in viddec_fw_mp4_populate_attr()
|
/hardware/libhardware/tests/hwc/ |
D | cnativewindow.c | 365 uint32_t attrs[] = { variable 411 if ((r = hwc->getDisplayAttributes(hwc, 0, configs[0], attrs, values))) { in hwc_init()
|
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
D | wifilogger_diag.cpp | 2123 struct nlattr *attrs[CLD80211_ATTR_MAX + 1]; in diag_message_handler() local 2133 int result = nla_parse(attrs, CLD80211_ATTR_MAX, genlmsg_attrdata(genlh, 0), in diag_message_handler() 2136 if (!result && attrs[CLD80211_ATTR_VENDOR_DATA]) { in diag_message_handler() 2138 (struct nlattr *)nla_data(attrs[CLD80211_ATTR_VENDOR_DATA]), in diag_message_handler() 2139 nla_len(attrs[CLD80211_ATTR_VENDOR_DATA]), NULL); in diag_message_handler()
|
/hardware/libhardware/include/hardware/ |
D | bt_rc.h | 212 uint32_t attrs[BTRC_MAX_ELEM_ATTR_SIZE]; member
|