Home | History | Annotate | Download | only in src

Lines Matching refs:m_sParamH263

354   OMX_INIT_STRUCT(&m_sParamH263, OMX_VIDEO_PARAM_H263TYPE);
355 m_sParamH263.nPortIndex = (OMX_U32) PORT_INDEX_OUT;
356 m_sParamH263.nPFrames = (m_sOutPortFormat.xFramerate * 2 - 1); // 2 second intra period for default outport fps
357 m_sParamH263.nBFrames = 0;
358 m_sParamH263.eProfile = OMX_VIDEO_H263ProfileBaseline;
359 m_sParamH263.eLevel = OMX_VIDEO_H263Level10;
360 m_sParamH263.bPLUSPTYPEAllowed = OMX_FALSE;
361 m_sParamH263.nAllowedPictureTypes = 2;
362 m_sParamH263.bForceRoundingTypeToZero = OMX_TRUE;
363 m_sParamH263.nPictureHeaderRepetition = 0;
364 m_sParamH263.nGOBHeaderInterval = 1;
712 memcpy(&m_sParamH263,pParam, sizeof(struct OMX_VIDEO_PARAM_H263TYPE));
794 m_sParamH263.eProfile = (OMX_VIDEO_H263PROFILETYPE)m_sParamProfileLevel.eProfile;
795 m_sParamH263.eLevel = (OMX_VIDEO_H263LEVELTYPE)m_sParamProfileLevel.eLevel;
796 DEBUG_PRINT_LOW("\n H263 profile = %d, level = %d", m_sParamH263.eProfile,
797 m_sParamH263.eLevel);
1180 m_sParamH263.eProfile = (OMX_VIDEO_H263PROFILETYPE)eProfile;
1181 m_sParamH263.eLevel = (OMX_VIDEO_H263LEVELTYPE)eLevel;
1182 DEBUG_PRINT_LOW("\n H263 profile = %d, level = %d", m_sParamH263.eProfile,
1183 m_sParamH263.eLevel);
1311 m_sParamH263.nPFrames = pParam->nPFrames;