Home | History | Annotate | Download | only in src

Lines Matching refs:m_sParamH263

402     OMX_INIT_STRUCT(&m_sParamH263, OMX_VIDEO_PARAM_H263TYPE);
403 m_sParamH263.nPortIndex = (OMX_U32) PORT_INDEX_OUT;
404 m_sParamH263.nPFrames = (m_sOutPortFormat.xFramerate * 2 - 1); // 2 second intra period for default outport fps
405 m_sParamH263.nBFrames = 0;
406 m_sParamH263.eProfile = OMX_VIDEO_H263ProfileBaseline;
407 m_sParamH263.eLevel = OMX_VIDEO_H263Level10;
408 m_sParamH263.bPLUSPTYPEAllowed = OMX_FALSE;
409 m_sParamH263.nAllowedPictureTypes = 2;
410 m_sParamH263.bForceRoundingTypeToZero = OMX_TRUE;
411 m_sParamH263.nPictureHeaderRepetition = 0;
412 m_sParamH263.nGOBHeaderInterval = 1;
831 memcpy(&m_sParamH263,pParam, sizeof(struct OMX_VIDEO_PARAM_H263TYPE));
832 m_sIntraperiod.nPFrames = m_sParamH263.nPFrames;
833 m_sIntraperiod.nBFrames = m_sParamH263.nBFrames;
948 m_sParamH263.eProfile = (OMX_VIDEO_H263PROFILETYPE)m_sParamProfileLevel.eProfile;
949 m_sParamH263.eLevel = (OMX_VIDEO_H263LEVELTYPE)m_sParamProfileLevel.eLevel;
950 DEBUG_PRINT_LOW("H263 profile = %d, level = %d", m_sParamH263.eProfile,
951 m_sParamH263.eLevel);
1551 m_sParamH263.eProfile = (OMX_VIDEO_H263PROFILETYPE)eProfile;
1552 m_sParamH263.eLevel = (OMX_VIDEO_H263LEVELTYPE)eLevel;
1553 DEBUG_PRINT_LOW("H263 profile = %d, level = %d", m_sParamH263.eProfile,
1554 m_sParamH263.eLevel);
1701 m_sParamH263.nPFrames = pParam->nPFrames;