Searched refs:outDef (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp134 OMX_PARAM_PORTDEFINITIONTYPE *outDef = &editPortInfo(kOutputPortIndex)->mDef; local
135 outDef->format.video.nFrameWidth = outputBufferWidth();
136 outDef->format.video.nFrameHeight = outputBufferHeight();
137 outDef->format.video.nStride = outDef->format.video.nFrameWidth;
138 outDef->format.video.nSliceHeight = outDef->format.video.nFrameHeight;
140 outDef->nBufferSize =
141 (outDef->format.video.nStride * outDef
[all...]
H A DSoftVideoEncoderOMXComponent.cpp163 OMX_PARAM_PORTDEFINITIONTYPE *outDef = &editPortInfo(kOutputPortIndex)->mDef; local
164 outDef->format.video.nFrameWidth = mWidth;
165 outDef->format.video.nFrameHeight = mHeight;
166 outDef->format.video.nBitrate = mBitrate;
168 outDef->nBufferSize = max(mMinOutputBufferSize, rawBufferSize / mMinCompressionRatio);

Completed in 45 milliseconds