Home
last modified time | relevance | path

Searched refs:omxNode (Results 1 – 16 of 16) sorted by relevance

/frameworks/av/media/libstagefright/omx/1.0/
DWGraphicBufferSource.cpp41 TWOmxNodeWrapper(const sp<IOmxNode> &omxNode): mOmxNode(omxNode) { in TWOmxNodeWrapper()
124 const sp<IOmxNode>& omxNode, Dataspace dataspace) { in configure() argument
125 if (omxNode == NULL) { in configure()
132 Return<Status> err(omxNode->setInputSurface(mOmxBufferSource)); in configure()
153 auto transStatus = omxNode->getParameter( in configure()
170 transStatus = omxNode->getParameter( in configure()
184 new TWOmxNodeWrapper(omxNode), in configure()
/frameworks/av/media/codec2/sfplugin/
DOmx2IGraphicBufferSource.cpp143 const sp<IOMXNode>& omxNode, int32_t dataSpace) { in configure() argument
144 if (omxNode == NULL) { in configure()
151 status_t err = omxNode->setInputSurface(mOMXBufferSource); in configure()
158 if (omxNode->getParameter( in configure()
168 err = omxNode->getParameter( in configure()
176 new OmxNodeWrapper(omxNode), in configure()
DOmx2IGraphicBufferSource.h31 BnStatus configure(const sp<IOMXNode>& omxNode, int32_t dataSpace) override;
/frameworks/av/media/libstagefright/omx/
DOMXUtils.cpp195 status_t SetComponentRole(const sp<IOMXNode> &omxNode, const char *role) { in SetComponentRole() argument
204 return omxNode->setParameter( in SetComponentRole()
326 const sp<IOMXNode> &omxNode, in DescribeColorFormat() argument
330 if (omxNode->getExtensionIndex( in DescribeColorFormat()
334 if (omxNode->getParameter( in DescribeColorFormat()
340 } else if (omxNode->getExtensionIndex( in DescribeColorFormat()
342 && omxNode->getParameter( in DescribeColorFormat()
352 const sp<IOMXNode> &omxNode, in IsFlexibleColorFormat() argument
366 if (!DescribeColorFormat(omxNode, describeParams)) { in IsFlexibleColorFormat()
DOmxGraphicBufferSource.cpp74 const sp<IOmxNodeWrapper>& omxNode, in configure() argument
80 if (omxNode == NULL) { in configure()
85 new OmxComponentWrapper(omxNode), dataSpace, bufferCount, in configure()
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/
DOMXUtils.h42 status_t SetComponentRole(const sp<IOMXNode> &omxNode, const char *role);
47 const sp<IOMXNode> &omxNode, uint32_t colorFormat,
51 const sp<IOMXNode> &omxNode,
DOmxGraphicBufferSource.h69 const sp<IOmxNodeWrapper> &omxNode,
/frameworks/av/media/libmedia/omx/1.0/
DWGraphicBufferSource.cpp34 const sp<IOMXNode>& omxNode, int32_t dataSpace) { in configure() argument
35 sp<IOmxNode> hOmxNode = omxNode->getHalInterface<IOmxNode>(); in configure()
37 hOmxNode == nullptr ? new TWOmxNode(omxNode) : hOmxNode, in configure()
DWOmx.cpp60 sp<IOMXNode>* omxNode) { in allocateNode() argument
64 [&fnStatus, omxNode](Status status, sp<IOmxNode> const& node) { in allocateNode()
66 *omxNode = new LWOmxNode(node); in allocateNode()
/frameworks/av/media/libmedia/aidl/android/
DIGraphicBufferSource.aidl27 void configure(IOMXNode omxNode, int dataSpace); in configure() argument
/frameworks/av/media/libmedia/include/media/omx/1.0/
DWOmx.h67 sp<IOMXNode>* omxNode) override;
DWGraphicBufferSource.h70 BnStatus configure(const sp<IOMXNode>& omxNode, int32_t dataSpace) override;
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/1.0/
DWGraphicBufferSource.h77 const sp<IOmxNode>& omxNode, Dataspace dataspace) override;
/frameworks/av/media/libmedia/include/media/
DIOMX.h81 sp<IOMXNode> *omxNode) = 0;
/frameworks/av/media/libstagefright/
DACodec.cpp6685 sp<IOMXNode> omxNode; in onAllocateComponent() local
6698 err = omx->allocateNode(componentName.c_str(), observer, &omxNode); in onAllocateComponent()
6709 auto tOmxNode = omxNode->getHalInterface<IOmxNode>(); in onAllocateComponent()
6727 mCodec->mOMXNode = omxNode; in onAllocateComponent()
8614 sp<IOMXNode> omxNode; in queryCapabilities() local
8616 err = omx->allocateNode(name, observer, &omxNode); in queryCapabilities()
8622 err = SetComponentRole(omxNode, role); in queryCapabilities()
8624 omxNode->freeNode(); in queryCapabilities()
8639 status_t err = omxNode->getParameter( in queryCapabilities()
8673 status_t err = omxNode->getParameter( in queryCapabilities()
[all …]
/frameworks/av/media/libstagefright/omx/tests/
DOMXHarness.cpp255 NodeReaper(const sp<Harness> &harness, const sp<IOMXNode> &omxNode) in NodeReaper()
257 mOMXNode(omxNode) { in NodeReaper()