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

/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp164 OMX_PARAM_PORTDEFINITIONTYPE *inDef = &editPortInfo(kInputPortIndex)->mDef; local
165 inDef->format.video.nFrameWidth = mWidth;
166 inDef->format.video.nFrameHeight = mHeight;
168 inDef->format.video.nStride = 0;
169 inDef->format.video.nSliceHeight = 0;
173 inDef->nBufferSize = max(
175 max(mMinInputBufferSize, inDef->nBufferSize));
H A DSoftVideoEncoderOMXComponent.cpp150 OMX_PARAM_PORTDEFINITIONTYPE *inDef = &editPortInfo(kInputPortIndex)->mDef; local
151 inDef->format.video.nFrameWidth = mWidth;
152 inDef->format.video.nFrameHeight = mHeight;
153 inDef->format.video.nStride = inDef->format.video.nFrameWidth;
154 inDef->format.video.nSliceHeight = inDef->format.video.nFrameHeight;
155 inDef->format.video.xFramerate = mFramerate;
156 inDef->format.video.eColorFormat = mColorFormat;
158 inDef
[all...]

Completed in 56 milliseconds