the size of the image is computed by Intel like this
lpInfo->info.clip_info.height = sps->frame_height_in_mbs * 16-
(4>>sps->frame_mbs_only_flag)*(sps->frame_cropping_rect_top_offset +
sps->frame_cropping_rect_bottom_offset);
for 1920*1088i,
sps->frame_height_in_mbs = 68
sps->frame_mbs_only_flag =0
sps->frame_cropping_rect_top_offset =0
sps->frame_cropping_rect_bottom_offset =4
The above computation g ives the height of 1072 instead of 1080.
4>>sps->frame_mbs_only_flag seems to be
2>>sps->frame_mbs_only_flag
since there are two fileds in a frame.



