Home
last modified time | relevance | path

Searched refs:omxNode (Results 1 – 20 of 20) 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/libstagefright/omx/
DBWGraphicBufferSource.cpp34 BWOmxNodeWrapper(const sp<IOMXNode> &omxNode): mOMXNode(omxNode) { in BWOmxNodeWrapper()
92 const sp<IOMXNode>& omxNode, int32_t dataSpace) { in configure() argument
96 status_t err = omxNode->setInputSurface(mOMXBufferSource); in configure()
105 if (omxNode->getParameter( in configure()
115 err = omxNode->getParameter( in configure()
123 new BWOmxNodeWrapper(omxNode), in configure()
DOMXUtils.cpp186 status_t SetComponentRole(const sp<IOMXNode> &omxNode, const char *role) { in SetComponentRole() argument
195 return omxNode->setParameter( in SetComponentRole()
313 const sp<IOMXNode> &omxNode, in DescribeColorFormat() argument
317 if (omxNode->getExtensionIndex( in DescribeColorFormat()
321 if (omxNode->getParameter( in DescribeColorFormat()
327 } else if (omxNode->getExtensionIndex( in DescribeColorFormat()
329 && omxNode->getParameter( in DescribeColorFormat()
339 const sp<IOMXNode> &omxNode, in IsFlexibleColorFormat() argument
353 if (!DescribeColorFormat(omxNode, describeParams)) { in IsFlexibleColorFormat()
DOMX.cpp96 sp<IOMXNode> *omxNode) { in allocateNode() argument
99 omxNode->clear(); in allocateNode()
142 *omxNode = instance; in allocateNode()
DGraphicBufferSource.cpp1035 const sp<IOmxNodeWrapper>& omxNode, in configure() argument
1041 if (omxNode == NULL) { in configure()
1059 mOMXNode = omxNode; 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,
DOMX.h41 sp<IOMXNode> *omxNode);
DBWGraphicBufferSource.h47 const sp<IOMXNode>& omxNode, int32_t dataSpace) override;
DGraphicBufferSource.h126 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(); 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.h68 sp<IOMXNode>* omxNode) override;
DWGraphicBufferSource.h70 BnStatus configure(const sp<IOMXNode>& omxNode, int32_t dataSpace) override;
/frameworks/av/media/libmedia/
DIOMX.cpp95 sp<IOMXNode> *omxNode) { in allocateNode() argument
104 *omxNode = IOMXNode::asInterface(reply.readStrongBinder()); in allocateNode()
106 omxNode->clear(); in allocateNode()
606 sp<IOMXNode> omxNode; in onTransact() local
608 status_t err = allocateNode(name, observer, &omxNode); in onTransact()
612 reply->writeStrongBinder(IInterface::asBinder(omxNode)); in onTransact()
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/1.0/
DWGraphicBufferSource.h77 const sp<IOmxNode>& omxNode, Dataspace dataspace) override;
/frameworks/av/include/media/
DIOMX.h82 sp<IOMXNode> *omxNode) = 0;
/frameworks/av/media/libmedia/include/media/
DIOMX.h82 sp<IOMXNode> *omxNode) = 0;
/frameworks/av/media/libstagefright/
DACodec.cpp6398 sp<IOMXNode> omxNode; in onAllocateComponent() local
6416 err = omx->allocateNode(componentName.c_str(), observer, &omxNode); in onAllocateComponent()
6426 omxNode = NULL; in onAllocateComponent()
6429 if (omxNode == NULL) { in onAllocateComponent()
6443 auto tOmxNode = omxNode->getHalInterface(); in onAllocateComponent()
6448 if (IInterface::asBinder(omxNode)->linkToDeath(mDeathNotifier) != OK) { in onAllocateComponent()
6470 mCodec->mOMXNode = omxNode; in onAllocateComponent()
8259 sp<IOMXNode> omxNode; in queryCapabilities() local
8261 err = omx->allocateNode(name, observer, &omxNode); in queryCapabilities()
8267 err = SetComponentRole(omxNode, role); in queryCapabilities()
[all …]
/frameworks/av/media/libstagefright/omx/tests/
DOMXHarness.cpp268 NodeReaper(const sp<Harness> &harness, const sp<IOMXNode> &omxNode) in NodeReaper()
270 mOMXNode(omxNode) { in NodeReaper()