Home | History | Annotate | Download | only in libstagefright

Lines Matching refs:videoDef

2249             OMX_VIDEO_PORTDEFINITIONTYPE *videoDef = &def.format.video;
2255 videoDef->eCompressionFormat, &mime) != OK) {
2261 notify->setInt32("width", videoDef->nFrameWidth);
2262 notify->setInt32("height", videoDef->nFrameHeight);
2265 notify->setInt32("stride", videoDef->nStride);
2266 notify->setInt32("slice-height", videoDef->nSliceHeight);
2267 notify->setInt32("color-format", videoDef->eColorFormat);
2278 rect.nWidth = videoDef->nFrameWidth;
2279 rect.nHeight = videoDef->nFrameHeight;
2286 CHECK_LE(rect.nLeft + rect.nWidth - 1, videoDef->nFrameWidth);
2287 CHECK_LE(rect.nTop + rect.nHeight - 1, videoDef->nFrameHeight);