OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cont_size
(Results
1 - 8
of
8
) sorted by null
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp2/parser/
viddec_mpeg2_frame_attr.c
15
MPEG2_FA_DEB("Content_Size=%dx%d\n", attr->
cont_size
.width,
16
attr->
cont_size
.height);
69
attrs->
cont_size
.height = ((parser->info.seq_ext.vertical_size_extension << 12)
71
attrs->
cont_size
.width = ((parser->info.seq_ext.horizontal_size_extension << 12)
viddec_mpeg2_workload.c
300
unsupported_feature_found |= (attrs->
cont_size
.height > MPEG2_MAX_CONTENT_HEIGHT);
301
unsupported_feature_found |= (attrs->
cont_size
.width > MPEG2_MAX_CONTENT_WIDTH);
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
viddec_h264_parse.c
513
if((attrs->
cont_size
.width < 32) || (attrs->
cont_size
.width > 2048) || (attrs->
cont_size
.height < 32) || (attrs->
cont_size
.height>2048))
515
attrs->
cont_size
.width = 32;
516
attrs->
cont_size
.height = 32;
viddec_h264_workload.c
80
////
Cont_size
81
attrs->
cont_size
.height = pInfo->img.FrameHeightInMbs*16;
82
attrs->
cont_size
.width = pInfo->img.PicWidthInMbs*16;
116
if ((int32_t)attrs->
cont_size
.height >(pInfo->active_SPS.sps_disp.frame_crop_rect_bottom_offset*CropUnitY))
118
attrs->
cont_size
.height -= (pInfo->active_SPS.sps_disp.frame_crop_rect_bottom_offset*CropUnitY);
[
all
...]
/hardware/intel/common/libmix/mix_vbp/viddec_fw/include/
viddec_fw_frame_attr.h
211
Currently, the
cont_size
is cropped, so this paramter is redundant, but in future,
cont_size
may be changed
257
viddec_rect_size_t
cont_size
;
member in struct:viddec_frame_attributes
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_fw_mp4_workload.c
14
attr->
cont_size
.width = vol->video_object_layer_width;
15
attr->
cont_size
.height = vol->video_object_layer_height;
viddec_mp4_videoobjectlayer.c
591
wl->attrs.
cont_size
.width = vidObjLay->video_object_layer_width;
592
wl->attrs.
cont_size
.height = vidObjLay->video_object_layer_height;
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
viddec_vc1_workload.c
51
attrs->
cont_size
.height = info->metadata.height * 2 + 2;
52
attrs->
cont_size
.width = info->metadata.width * 2 + 2;
Completed in 114 milliseconds