Home | History | Annotate | Download | only in src

Lines Matching refs:m_sParamMPEG4

299   OMX_INIT_STRUCT(&m_sParamMPEG4, OMX_VIDEO_PARAM_MPEG4TYPE);
300 m_sParamMPEG4.nPortIndex = (OMX_U32) PORT_INDEX_OUT;
301 m_sParamMPEG4.eProfile = OMX_VIDEO_MPEG4ProfileSimple;
302 m_sParamMPEG4.eLevel = OMX_VIDEO_MPEG4Level0;
303 m_sParamMPEG4.nSliceHeaderSpacing = 0;
304 m_sParamMPEG4.bSVH = OMX_FALSE;
305 m_sParamMPEG4.bGov = OMX_FALSE;
306 m_sParamMPEG4.nPFrames = 29; // 2 second intra period for default 15 fps
307 m_sParamMPEG4.bACPred = OMX_TRUE;
308 m_sParamMPEG4.nTimeIncRes = 30; // delta = 2 @ 15 fps
309 m_sParamMPEG4.nAllowedPictureTypes = 2; // pframe and iframe
310 m_sParamMPEG4.nHeaderExtension = 1; // number of video packet headers per vop
311 m_sParamMPEG4.bReversibleVLC = OMX_FALSE;
572 m_sParamMPEG4.nPFrames = pParam->nPFrames;
573 m_sParamMPEG4.eProfile = pParam->eProfile;
574 m_sParamMPEG4.eLevel = pParam->eLevel;
575 m_sParamMPEG4.bACPred = pParam->bACPred;
576 m_sParamMPEG4.nTimeIncRes = pParam->nTimeIncRes;
577 m_sParamMPEG4.bReversibleVLC = pParam->bReversibleVLC;
631 m_sParamMPEG4.eProfile = (OMX_VIDEO_MPEG4PROFILETYPE)m_sParamProfileLevel.eProfile;
632 m_sParamMPEG4.eLevel = (OMX_VIDEO_MPEG4LEVELTYPE)m_sParamProfileLevel.eLevel;
633 DEBUG_PRINT_LOW("\n MPEG4 profile = %d, level = %d", m_sParamMPEG4.eProfile,
634 m_sParamMPEG4.eLevel);