Home | History | Annotate | Download | only in src

Lines Matching refs:m_sParamH263

398     OMX_INIT_STRUCT(&m_sParamH263, OMX_VIDEO_PARAM_H263TYPE);
399 m_sParamH263.nPortIndex = (OMX_U32) PORT_INDEX_OUT;
400 m_sParamH263.nPFrames = (m_sOutPortFormat.xFramerate * 2 - 1); // 2 second intra period for default outport fps
401 m_sParamH263.nBFrames = 0;
402 m_sParamH263.eProfile = OMX_VIDEO_H263ProfileBaseline;
403 m_sParamH263.eLevel = OMX_VIDEO_H263Level10;
404 m_sParamH263.bPLUSPTYPEAllowed = OMX_FALSE;
405 m_sParamH263.nAllowedPictureTypes = 2;
406 m_sParamH263.bForceRoundingTypeToZero = OMX_TRUE;
407 m_sParamH263.nPictureHeaderRepetition = 0;
408 m_sParamH263.nGOBHeaderInterval = 1;
791 memcpy(&m_sParamH263,pParam, sizeof(struct OMX_VIDEO_PARAM_H263TYPE));
792 m_sIntraperiod.nPFrames = m_sParamH263.nPFrames;
793 m_sIntraperiod.nBFrames = m_sParamH263.nBFrames;
904 m_sParamH263.eProfile = (OMX_VIDEO_H263PROFILETYPE)m_sParamProfileLevel.eProfile;
905 m_sParamH263.eLevel = (OMX_VIDEO_H263LEVELTYPE)m_sParamProfileLevel.eLevel;
906 DEBUG_PRINT_LOW("H263 profile = %d, level = %d", m_sParamH263.eProfile,
907 m_sParamH263.eLevel);
1464 m_sParamH263.eProfile = (OMX_VIDEO_H263PROFILETYPE)eProfile;
1465 m_sParamH263.eLevel = (OMX_VIDEO_H263LEVELTYPE)eLevel;
1466 DEBUG_PRINT_LOW("H263 profile = %d, level = %d", m_sParamH263.eProfile,
1467 m_sParamH263.eLevel);
1611 m_sParamH263.nPFrames = pParam->nPFrames;