Home | History | Annotate | Download | only in enc

Lines Matching refs:mpeg4type

377             OMX_VIDEO_PARAM_MPEG4TYPE *mpeg4type =
380 if (mpeg4type->nPortIndex != 1) {
384 mpeg4type->eProfile = OMX_VIDEO_MPEG4ProfileCore;
385 mpeg4type->eLevel = OMX_VIDEO_MPEG4Level2;
386 mpeg4type->nAllowedPictureTypes =
388 mpeg4type->nBFrames = 0;
389 mpeg4type->nIDCVLCThreshold = 0;
390 mpeg4type->bACPred = OMX_TRUE;
391 mpeg4type->nMaxPacketSize = 256;
392 mpeg4type->nTimeIncRes = 1000;
393 mpeg4type->nHeaderExtension = 0;
394 mpeg4type->bReversibleVLC = OMX_FALSE;
570 OMX_VIDEO_PARAM_MPEG4TYPE *mpeg4type =
573 if (mpeg4type->nPortIndex != 1) {
577 if (mpeg4type->eProfile != OMX_VIDEO_MPEG4ProfileCore ||
578 mpeg4type->eLevel != OMX_VIDEO_MPEG4Level2 ||
579 (mpeg4type->nAllowedPictureTypes & OMX_VIDEO_PictureTypeB) ||
580 mpeg4type->nBFrames != 0 ||
581 mpeg4type->nIDCVLCThreshold != 0 ||
582 mpeg4type->bACPred != OMX_TRUE ||
583 mpeg4type->nMaxPacketSize != 256 ||
584 mpeg4type->nTimeIncRes != 1000 ||
585 mpeg4type->nHeaderExtension != 0 ||
586 mpeg4type->bReversibleVLC != OMX_FALSE) {