Lines Matching refs:format
64 paramPortDefinitionInput->format.video.cMIMEType = (OMX_STRING)VP9_MIME_TYPE; in InitInputPortFormatSpecific()
65 paramPortDefinitionInput->format.video.eCompressionFormat = OMX_VIDEO_CodingVP9; in InitInputPortFormatSpecific()
89 mGraphicBufferParam.graphicBufferColorFormat = def_output->format.video.eColorFormat; in ProcessorInit()
90 …mGraphicBufferParam.graphicBufferStride = (def_output->format.video.nFrameWidth + VP9_YV12_ALIGN) … in ProcessorInit()
91 mGraphicBufferParam.graphicBufferWidth = def_output->format.video.nFrameWidth; in ProcessorInit()
92 … mGraphicBufferParam.graphicBufferHeight = (def_output->format.video.nFrameHeight + 0x1f) & ~0x1f; in ProcessorInit()
93 mDecodedImageWidth = def_output->format.video.nFrameWidth; in ProcessorInit()
94 mDecodedImageHeight = def_output->format.video.nFrameHeight; in ProcessorInit()
165 mGraphicBufferParam.graphicBufferColorFormat = def_output->format.video.eColorFormat; in ProcessorReset()
166 …mGraphicBufferParam.graphicBufferStride = (def_output->format.video.nFrameWidth + VP9_YV12_ALIGN) … in ProcessorReset()
167 mGraphicBufferParam.graphicBufferWidth = def_output->format.video.nFrameWidth; in ProcessorReset()
168 … mGraphicBufferParam.graphicBufferHeight = (def_output->format.video.nFrameHeight + 0x1f) & ~0x1f; in ProcessorReset()
375 int32_t stride = paramPortDefinitionOutput->format.video.nStride; in FillRenderBuffer()
376 int32_t height = paramPortDefinitionOutput->format.video.nFrameHeight; in FillRenderBuffer()
377 int32_t width = paramPortDefinitionOutput->format.video.nFrameWidth; in FillRenderBuffer()
503 if (widthCropped == paramPortDefinitionOutput.format.video.nFrameWidth && in HandleFormatChange()
504 heightCropped == paramPortDefinitionOutput.format.video.nFrameHeight) { in HandleFormatChange()
515 paramPortDefinitionInput.format.video.nFrameWidth = width; in HandleFormatChange()
516 paramPortDefinitionInput.format.video.nFrameHeight = height; in HandleFormatChange()
517 paramPortDefinitionInput.format.video.nStride = stride; in HandleFormatChange()
518 paramPortDefinitionInput.format.video.nSliceHeight = sliceHeight; in HandleFormatChange()
521 paramPortDefinitionOutput.format.video.nFrameWidth = widthCropped; in HandleFormatChange()
522 paramPortDefinitionOutput.format.video.nFrameHeight = heightCropped; in HandleFormatChange()
523 paramPortDefinitionOutput.format.video.nStride = strideCropped; in HandleFormatChange()
524 paramPortDefinitionOutput.format.video.nSliceHeight = sliceHeightCropped; in HandleFormatChange()
542 paramPortDefinitionOutput.format.video.nFrameWidth = width; in HandleFormatChange()
544 paramPortDefinitionOutput.format.video.nFrameHeight = (height + 0x1f) & ~0x1f; in HandleFormatChange()
546 paramPortDefinitionOutput.format.video.nFrameHeight = (height + 0x1f) & ~0x1f; in HandleFormatChange()
547 paramPortDefinitionOutput.format.video.eColorFormat = GetOutputColorFormat( in HandleFormatChange()
548 paramPortDefinitionOutput.format.video.nFrameWidth); in HandleFormatChange()
549 paramPortDefinitionOutput.format.video.nStride = stride; in HandleFormatChange()
550 paramPortDefinitionOutput.format.video.nSliceHeight = sliceHeight; in HandleFormatChange()
589 rectParams->nWidth = paramPortDefinitionInput->format.video.nFrameWidth; in GetDecoderOutputCropSpecific()
590 rectParams->nHeight = paramPortDefinitionInput->format.video.nFrameHeight; in GetDecoderOutputCropSpecific()
628 port_def.format.video.cMIMEType = (OMX_STRING)VA_VED_RAW_MIME_TYPE; in SetNativeBufferModeSpecific()
630 port_def.format.video.nFrameWidth += VPX_DECODE_BORDER * 2; in SetNativeBufferModeSpecific()
631 mDecodedImageWidth = port_def.format.video.nFrameWidth; in SetNativeBufferModeSpecific()
632 mDecodedImageHeight = port_def.format.video.nFrameHeight; in SetNativeBufferModeSpecific()
634 port_def.format.video.nFrameHeight = (port_def.format.video.nFrameHeight + 0x1f) & ~0x1f; in SetNativeBufferModeSpecific()
635 port_def.format.video.eColorFormat = GetOutputColorFormat(port_def.format.video.nFrameWidth); in SetNativeBufferModeSpecific()