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

  /external/opencore/codecs_v2/omx/omx_h264/src/
avc_dec.cpp 181 AVCDecObject* pDecVid;
226 pDecVid = (AVCDecObject*) AvcHandle.AVCObject;
228 Width = (pDecVid->seqParams[0]->pic_width_in_mbs_minus1 + 1) * 16;
229 Height = (pDecVid->seqParams[0]->pic_height_in_map_units_minus1 + 1) * 16;
231 if (pDecVid->seqParams[0]->frame_cropping_flag)
233 crop_left = 2 * pDecVid->seqParams[0]->frame_crop_left_offset;
234 crop_right = Width - (2 * pDecVid->seqParams[0]->frame_crop_right_offset + 1);
236 if (pDecVid->seqParams[0]->frame_mbs_only_flag)
238 crop_top = 2 * pDecVid->seqParams[0]->frame_crop_top_offset;
239 crop_bottom = Height - (2 * pDecVid->seqParams[0]->frame_crop_bottom_offset + 1)
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/
AVCDecoder.cpp 290 AVCDecObject *pDecVid = (AVCDecObject *)mHandle->AVCObject;
293 (pDecVid->seqParams[0]->pic_width_in_mbs_minus1 + 1) * 16;
296 (pDecVid->seqParams[0]->pic_height_in_map_units_minus1 + 1) * 16;
299 if (pDecVid->seqParams[0]->frame_cropping_flag)
301 crop_left = 2 * pDecVid->seqParams[0]->frame_crop_left_offset;
303 width - (2 * pDecVid->seqParams[0]->frame_crop_right_offset + 1);
305 if (pDecVid->seqParams[0]->frame_mbs_only_flag)
307 crop_top = 2 * pDecVid->seqParams[0]->frame_crop_top_offset;
310 (2 * pDecVid->seqParams[0]->frame_crop_bottom_offset + 1);
314 crop_top = 4 * pDecVid->seqParams[0]->frame_crop_top_offset
    [all...]

Completed in 35 milliseconds