Lines Matching refs:video
66 paramPortDefinitionInput->format.video.cMIMEType = (OMX_STRING)VP9_MIME_TYPE; in InitInputPortFormatSpecific()
67 paramPortDefinitionInput->format.video.eCompressionFormat = OMX_VIDEO_CodingVP9; in InitInputPortFormatSpecific()
91 mGraphicBufferParam.graphicBufferColorFormat = def_output->format.video.eColorFormat; in ProcessorInit()
92 …mGraphicBufferParam.graphicBufferHStride = (def_output->format.video.nFrameWidth + VP9_YV12_ALIGN)… in ProcessorInit()
93 … mGraphicBufferParam.graphicBufferVStride = (def_output->format.video.nFrameHeight + 0x1f) & ~0x1f; in ProcessorInit()
94 mGraphicBufferParam.graphicBufferWidth = def_output->format.video.nFrameWidth; in ProcessorInit()
95 mGraphicBufferParam.graphicBufferHeight = def_output->format.video.nFrameHeight; in ProcessorInit()
96 mDecodedImageWidth = def_output->format.video.nFrameWidth; in ProcessorInit()
97 mDecodedImageHeight = def_output->format.video.nFrameHeight; in ProcessorInit()
175 mGraphicBufferParam.graphicBufferColorFormat = def_output->format.video.eColorFormat; in ProcessorReset()
176 …mGraphicBufferParam.graphicBufferHStride = (def_output->format.video.nFrameWidth + VP9_YV12_ALIGN)… in ProcessorReset()
177 … mGraphicBufferParam.graphicBufferVStride = (def_output->format.video.nFrameHeight + 0x1f) & ~0x1f; in ProcessorReset()
178 mGraphicBufferParam.graphicBufferWidth = def_output->format.video.nFrameWidth; in ProcessorReset()
179 mGraphicBufferParam.graphicBufferHeight = def_output->format.video.nFrameHeight; in ProcessorReset()
448 int32_t stride = paramPortDefinitionOutput->format.video.nStride; in FillRenderBuffer()
449 int32_t height = paramPortDefinitionOutput->format.video.nFrameHeight; in FillRenderBuffer()
450 int32_t width = paramPortDefinitionOutput->format.video.nFrameWidth; in FillRenderBuffer()
576 if (widthCropped == paramPortDefinitionOutput.format.video.nFrameWidth && in HandleFormatChange()
577 heightCropped == paramPortDefinitionOutput.format.video.nFrameHeight) { in HandleFormatChange()
588 paramPortDefinitionInput.format.video.nFrameWidth = width; in HandleFormatChange()
589 paramPortDefinitionInput.format.video.nFrameHeight = height; in HandleFormatChange()
590 paramPortDefinitionInput.format.video.nStride = stride; in HandleFormatChange()
591 paramPortDefinitionInput.format.video.nSliceHeight = sliceHeight; in HandleFormatChange()
594 paramPortDefinitionOutput.format.video.nFrameWidth = widthCropped; in HandleFormatChange()
595 paramPortDefinitionOutput.format.video.nFrameHeight = heightCropped; in HandleFormatChange()
596 paramPortDefinitionOutput.format.video.nStride = strideCropped; in HandleFormatChange()
597 paramPortDefinitionOutput.format.video.nSliceHeight = sliceHeightCropped; in HandleFormatChange()
615 paramPortDefinitionOutput.format.video.nFrameWidth = width; in HandleFormatChange()
616 paramPortDefinitionOutput.format.video.nFrameHeight = height; in HandleFormatChange()
617 paramPortDefinitionOutput.format.video.eColorFormat = GetOutputColorFormat( in HandleFormatChange()
618 paramPortDefinitionOutput.format.video.nFrameWidth); in HandleFormatChange()
619 paramPortDefinitionOutput.format.video.nStride = stride; in HandleFormatChange()
620 paramPortDefinitionOutput.format.video.nSliceHeight = sliceHeight; in HandleFormatChange()
659 rectParams->nWidth = paramPortDefinitionInput->format.video.nFrameWidth; in GetDecoderOutputCropSpecific()
660 rectParams->nHeight = paramPortDefinitionInput->format.video.nFrameHeight; in GetDecoderOutputCropSpecific()
696 port_def.format.video.eColorFormat = OMX_COLOR_FormatYUV420SemiPlanar; in SetNativeBufferModeSpecific()
697 port_def.format.video.pNativeRender = NULL; in SetNativeBufferModeSpecific()
698 port_def.format.video.pNativeWindow = NULL; in SetNativeBufferModeSpecific()
706 port_def.format.video.cMIMEType = (OMX_STRING)VA_VED_RAW_MIME_TYPE; in SetNativeBufferModeSpecific()
708 port_def.format.video.nFrameWidth += VPX_DECODE_BORDER * 2; in SetNativeBufferModeSpecific()
709 port_def.format.video.nFrameHeight += VPX_DECODE_BORDER * 2; in SetNativeBufferModeSpecific()
710 mDecodedImageWidth = port_def.format.video.nFrameWidth; in SetNativeBufferModeSpecific()
711 mDecodedImageHeight = port_def.format.video.nFrameHeight; in SetNativeBufferModeSpecific()
712 port_def.format.video.eColorFormat = GetOutputColorFormat(port_def.format.video.nFrameWidth); in SetNativeBufferModeSpecific()