Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/
DOMXCodec.cpp746 OMX_VIDEO_PARAM_PORTFORMATTYPE portFormat; in isColorFormatSupported() local
747 InitOMXParams(&portFormat); in isColorFormatSupported()
748 portFormat.nPortIndex = portIndex; in isColorFormatSupported()
750 portFormat.nIndex = index; in isColorFormatSupported()
754 &portFormat, sizeof(portFormat))) { in isColorFormatSupported()
759 CHECK_EQ(index, portFormat.nIndex); in isColorFormatSupported()
760 if (portFormat.eColorFormat == colorFormat) { in isColorFormatSupported()
761 CODEC_LOGV("Found supported color format: %d", portFormat.eColorFormat); in isColorFormatSupported()
765 portFormat.nIndex = index; in isColorFormatSupported()
4586 OMX_VIDEO_PARAM_PORTFORMATTYPE portFormat; in QueryCodec() local
[all …]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
DFilter.java638 FrameFormat portFormat = getInputPort(inputName).getPortFormat(); in wrapInputValue() local
639 Class portClass = (portFormat == null) ? null : portFormat.getObjectClass(); in wrapInputValue()