Searched defs:omx (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp287 sp<IOMX> omx = getOMX(); local
288 reply->writeStrongBinder(omx->asBinder());
/frameworks/av/media/libstagefright/
H A DOMXClient.cpp214 sp<IOMX> omx; local
220 omx = mLocalOMX;
222 omx = mRemoteOMX;
225 status_t err = omx->allocateNode(name, observer, node);
231 if (omx == mLocalOMX) {
H A DOMXCodec.cpp67 // 1000 is more than enough for us to tell whether the omx
289 const sp<IOMX> &omx,
363 status_t err = omx->allocateNode(componentName, observer, &node);
368 omx, node, quirks, flags,
844 // the omx component to see whether the given
857 // Make sure that omx component does not overwrite
1088 // value; but we will leave that to the omx encoder component
1413 const sp<IOMX> &omx, IOMX::node_id node,
1420 : mOMX(omx),
1421 mOMXLivesLocally(omx
288 Create( const sp<IOMX> &omx, const sp<MetaData> &meta, bool createEncoder, const sp<MediaSource> &source, const char *matchComponentName, uint32_t flags, const sp<ANativeWindow> &nativeWindow) argument
1412 OMXCodec( const sp<IOMX> &omx, IOMX::node_id node, uint32_t quirks, uint32_t flags, bool isEncoder, const char *mime, const char *componentName, const sp<MediaSource> &source, const sp<ANativeWindow> &nativeWindow) argument
1453 setComponentRole( const sp<IOMX> &omx, IOMX::node_id node, bool isEncoder, const char *mime) argument
4454 QueryCodecs( const sp<IOMX> &omx, const char *mime, bool queryDecoders, bool hwCodecOnly, Vector<CodecCapabilities> *results) argument
4484 QueryCodec( const sp<IOMX> &omx, const char *componentName, const char *mime, bool isEncoder, CodecCapabilities *caps) argument
4575 QueryCodecs( const sp<IOMX> &omx, const char *mimeType, bool queryDecoders, Vector<CodecCapabilities> *results) argument
[all...]
H A DACodec.cpp3383 const sp<IOMX> &omx, IOMX::node_id node,
3387 if (omx->getExtensionIndex(
3390 omx->getParameter(
3401 const sp<IOMX> &omx, IOMX::node_id node,
3415 if (!describeColorFormat(omx, node, describeParams)) {
4833 sp<IOMX> omx = client.interface(); local
4838 if (omx->asBinder()->linkToDeath(mDeathNotifier) != OK) {
4886 status_t err = omx->allocateNode(componentName.c_str(), observer, &node);
4923 mCodec->mOMX = omx;
3382 describeColorFormat( const sp<IOMX> &omx, IOMX::node_id node, DescribeColorFormatParams &describeParams) argument
3400 isFlexibleColorFormat( const sp<IOMX> &omx, IOMX::node_id node, uint32_t colorFormat, bool usingNativeBuffers, OMX_U32 *flexibleEquivalent) argument
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp614 static void dumpCodecProfiles(const sp<IOMX>& omx, bool queryDecoders) { argument
632 CHECK_EQ(QueryCodecs(omx, kMimeTypes[k],
884 sp<IOMX> omx = service->getOMX(); local
885 CHECK(omx.get() != NULL);
886 dumpCodecProfiles(omx, true /* queryDecoders */);
887 dumpCodecProfiles(omx, false /* queryDecoders */);
897 sp<IOMX> omx = service->getOMX(); local
898 CHECK(omx.get() != NULL);
901 omx->listNodes(&list);

Completed in 19 milliseconds