Home
last modified time | relevance | path

Searched refs:p_def (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/frontends/omx/tizonia/
Dh264dinport.c71 OMX_VIDEO_PORTDEFINITIONTYPE * p_def = &(p_prc->out_port_def_.format.video); in h264d_inport_SetParameter() local
75 if ((p_def->nFrameWidth == i_def->format.video.nFrameWidth) && in h264d_inport_SetParameter()
76 (p_def->nFrameHeight == i_def->format.video.nFrameHeight) && in h264d_inport_SetParameter()
77 (p_def->eCompressionFormat == i_def->format.video.eCompressionFormat)) in h264d_inport_SetParameter()
/external/mesa3d/src/gallium/frontends/omx/
Dvid_dec_h264_common.c925 OMX_VIDEO_PORTDEFINITIONTYPE * p_def = NULL; /* Output port info */ in update_port_parameters() local
931 p_def = &(priv->out_port_def_.format.video); in update_port_parameters()
935 if ((p_def->nFrameWidth == i_def->width) && p_def->nFrameHeight == i_def->height) in update_port_parameters()
938 p_def->nFrameWidth = i_def->width; in update_port_parameters()
939 p_def->nFrameHeight = i_def->height; in update_port_parameters()
940 p_def->nStride = i_def->width; in update_port_parameters()
941 p_def->nSliceHeight = i_def->height; in update_port_parameters()
949 p_obj->portdef_.nBufferSize = p_def->nFrameWidth * p_def->nFrameHeight * 512 / (16*16); in update_port_parameters()