Home | History | Annotate | Download | only in mpeg4dec

Lines Matching refs:video

542             pSECComponent->pSECPort[INPUT_PORT_INDEX].portDefinition.format.video.eCompressionFormat = OMX_VIDEO_CodingMPEG4;
545 pSECComponent->pSECPort[INPUT_PORT_INDEX].portDefinition.format.video.eCompressionFormat = OMX_VIDEO_CodingH263;
584 width = ((pSECPort->portDefinition.format.video.nFrameWidth + 15) & (~15));
585 height = ((pSECPort->portDefinition.format.video.nFrameHeight + 15) & (~15));
587 pSECPort->portDefinition.format.video.nStride = width;
588 pSECPort->portDefinition.format.video.nSliceHeight = height;
593 pSECOutputPort->portDefinition.format.video.nFrameWidth = pSECPort->portDefinition.format.video.nFrameWidth;
594 pSECOutputPort->portDefinition.format.video.nFrameHeight = pSECPort->portDefinition.format.video.nFrameHeight;
595 pSECOutputPort->portDefinition.format.video.nStride = width;
596 pSECOutputPort->portDefinition.format.video.nSliceHeight = height;
597 if (pSECOutputPort->portDefinition.format.video.eColorFormat == OMX_COLOR_FormatYUV420Planar) {
599 } else if (pSECOutputPort->portDefinition.format.video.eColorFormat == OMX_COLOR_FormatYUV422Planar) {
964 if ((pInputPort->portDefinition.format.video.nFrameWidth != imgResol.width) ||
965 (pInputPort->portDefinition.format.video.nFrameHeight != imgResol.height)) {
967 pInputPort->portDefinition.format.video.nFrameWidth = imgResol.width;
968 pInputPort->portDefinition.format.video.nFrameHeight = imgResol.height;
969 pInputPort->portDefinition.format.video.nStride = ((imgResol.width + 15) & (~15));
970 pInputPort->portDefinition.format.video.nSliceHeight = ((imgResol.height + 15) & (~15));
985 pInputPort->portDefinition.format.video.nFrameWidth, pInputPort->portDefinition.format.video.nFrameHeight,
986 pInputPort->portDefinition.format.video.nStride, pInputPort->portDefinition.format.video.nSliceHeight);
1047 switch(pSECComponent->pSECPort[OUTPUT_PORT_INDEX].portDefinition.format.video.eColorFormat) {
1091 switch(pSECComponent->pSECPort[OUTPUT_PORT_INDEX].portDefinition.format.video.eColorFormat) {
1124 (pSECOutputPort->portDefinition.format.video.eColorFormat == SEC_OMX_COLOR_FormatNV12PhysicalAddress))
1288 pSECPort->portDefinition.format.video.nFrameWidth = DEFAULT_FRAME_WIDTH;
1289 pSECPort->portDefinition.format.video.nFrameHeight= DEFAULT_FRAME_HEIGHT;
1290 pSECPort->portDefinition.format.video.nStride = 0;
1291 pSECPort->portDefinition.format.video.nSliceHeight = 0;
1294 pSECPort->portDefinition.format.video.eCompressionFormat = OMX_VIDEO_CodingMPEG4;
1295 SEC_OSAL_Memset(pSECPort->portDefinition.format.video.cMIMEType, 0, MAX_OMX_MIMETYPE_SIZE);
1296 SEC_OSAL_Strcpy(pSECPort->portDefinition.format.video.cMIMEType, "video/mpeg4");
1298 pSECPort->portDefinition.format.video.eCompressionFormat = OMX_VIDEO_CodingH263;
1299 SEC_OSAL_Memset(pSECPort->portDefinition.format.video.cMIMEType, 0, MAX_OMX_MIMETYPE_SIZE);
1300 SEC_OSAL_Strcpy(pSECPort->portDefinition.format.video.cMIMEType, "video/h263");
1302 pSECPort->portDefinition.format.video.pNativeRender = 0;
1303 pSECPort->portDefinition.format.video.bFlagErrorConcealment = OMX_FALSE;
1304 pSECPort->portDefinition.format.video.eColorFormat = OMX_COLOR_FormatUnused;
1309 pSECPort->portDefinition.format.video.nFrameWidth = DEFAULT_FRAME_WIDTH;
1310 pSECPort->portDefinition.format.video.nFrameHeight= DEFAULT_FRAME_HEIGHT;
1311 pSECPort->portDefinition.format.video.nStride = 0;
1312 pSECPort->portDefinition.format.video.nSliceHeight = 0;
1314 pSECPort->portDefinition.format.video.eCompressionFormat = OMX_VIDEO_CodingUnused;
1315 SEC_OSAL_Memset(pSECPort->portDefinition.format.video.cMIMEType, 0, MAX_OMX_MIMETYPE_SIZE);
1316 SEC_OSAL_Strcpy(pSECPort->portDefinition.format.video.cMIMEType, "raw/video");
1317 pSECPort->portDefinition.format.video.pNativeRender = 0;
1318 pSECPort->portDefinition.format.video.bFlagErrorConcealment = OMX_FALSE;
1319 pSECPort->portDefinition.format.video.eColorFormat = OMX_COLOR_FormatYUV420Planar;