Searched defs:h263type (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp247 OMX_VIDEO_PARAM_H263TYPE *h263type = local
250 if (!isValidOMXParam(h263type)) {
254 if (h263type->nPortIndex != 1) {
258 h263type->nAllowedPictureTypes =
260 h263type->eProfile = OMX_VIDEO_H263ProfileBaseline;
261 h263type->eLevel = OMX_VIDEO_H263Level45;
262 h263type->bPLUSPTYPEAllowed = OMX_FALSE;
263 h263type->bForceRoundingTypeToZero = OMX_FALSE;
264 h263type->nPictureHeaderRepetition = 0;
265 h263type
328 OMX_VIDEO_PARAM_H263TYPE *h263type = local
[all...]
/frameworks/av/media/libstagefright/
H A DACodec.cpp4108 OMX_VIDEO_PARAM_H263TYPE h263type; local
4109 InitOMXParams(&h263type);
4110 h263type.nPortIndex = kPortIndexOutput;
4113 mNode, OMX_IndexParamVideoH263, &h263type, sizeof(h263type));
4119 h263type.nAllowedPictureTypes =
4122 h263type.nBFrames = 0;
4123 h263type.nPFrames = setPFramesSpacing(iFrameInterval, frameRate, h263type.nBFrames);
4124 if (h263type
[all...]

Completed in 83 milliseconds