Home
last modified time | relevance | path

Searched refs:portFormat (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/
DOMXCodec.cpp854 OMX_VIDEO_PARAM_PORTFORMATTYPE portFormat; in isColorFormatSupported() local
855 InitOMXParams(&portFormat); in isColorFormatSupported()
856 portFormat.nPortIndex = portIndex; in isColorFormatSupported()
858 portFormat.nIndex = index; in isColorFormatSupported()
862 &portFormat, sizeof(portFormat))) { in isColorFormatSupported()
867 CHECK_EQ(index, portFormat.nIndex); in isColorFormatSupported()
868 if (portFormat.eColorFormat == colorFormat) { in isColorFormatSupported()
869 CODEC_LOGV("Found supported color format: %d", portFormat.eColorFormat); in isColorFormatSupported()
873 portFormat.nIndex = index; in isColorFormatSupported()
4339 OMX_VIDEO_PARAM_PORTFORMATTYPE portFormat; in QueryCodec() local
[all …]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
DFilter.java637 FrameFormat portFormat = getInputPort(inputName).getPortFormat(); in wrapInputValue() local
638 Class portClass = (portFormat == null) ? null : portFormat.getObjectClass(); in wrapInputValue()