[android-porting] Re: How to build outside of Android with new parser/recognizer node

2010-01-11 Thread jeffb
, RaviY yend...@pv.com wrote: You can still follow the same procedure and make your master node (e.g., downloadmanager node) pass it's queryinterface downstream to the slave node (e.g., parser node) instead of the master node itself responding to the request. -Ravi On Jan 11, 12:48 am, jeffb

[android-porting] Re: How to build outside of Android with new parser/recognizer node

2010-01-10 Thread jeffb
:= $(SOLIBDIRS_pqr) /path/to/libstatic3 SOLIBS_pqr := $(SOLIBS_pqr) -lstatic3 E.g. When one wants to add a new parser node to be linked statically with libopencore_player.so. Hope this helps. -Ravi On Dec 4, 7:41 pm, jeffb jeffbo...@gmail.com wrote: Can anyone

[android-porting] Re: Creating PVMF nodes

2009-12-02 Thread jeffb
the insertion of new nodes and creates make files to build the new nodes into the system. On Dec 1, 12:44 am, Nilly ni...@oriolesoftware.com wrote: jeffb, You able to do any progress?I am working on same line but do know how to go ahead.If you have any idea kindly share with me. Regards, Nilly On Oct

[android-porting] Testing OpenCore changes without linking Android

2009-11-16 Thread jeffb
To understand OpenCore’s source code structure and flow, I wanted to run it by itself, separate from Android. A typical test I would like to perform would be to create a main() function that plays a sample MP4 video file. Is the regression test “pvplayer_engine_test” the right entry point? How do

[android-porting] What are the required interfaces to load and register a custom parser node and recognizer

2009-11-16 Thread jeffb
I am adding a parser node to the engine. As I understand it, a dynamically loadable shared library must be created for a custom parser node and a .cfg file must be created to reference the library. To avoid reverse engineering OpenCore, is there any documentation that provides a description of the

[android-porting] PV Architecture Question

2009-11-16 Thread jeffb
I would like to have the capability to have multiple parser nodes in the node-graph/pipeline where the output of one parser node provides input to a second parser node (which may provide input to yet another parser node). My current understanding is that the PV architecture only allows the output

[android-porting] Re: Creating PVMF nodes

2009-10-29 Thread jeffb
Sorry, I meant to say parser node, not decoder node. On Oct 28, 1:54 pm, jeffb jeffbo...@gmail.com wrote: I have a need to create a decoder node whose output will require processing by another node. I have read the PVPlayer SDK Developer's Guide and believe that one way to do

[android-porting] Creating PVMF nodes

2009-10-28 Thread jeffb
I have a need to create a decoder node whose output will require processing by another node. I have read the PVPlayer SDK Developer's Guide and believe that one way to do this is the creation of a new PVMF node. Not seeing any additional documentation on the creation of PVMF nodes, I have been

[android-porting] Re: Adding decoder to node graph

2009-10-27 Thread jeffb
to the registry, how a PVMF node plug-in is sequenced in the node graph/pipeline, etc). I did notice the OMX Core Integration Guide, but at first glance, I was not sure if this is complimentary to PVMF nodes in the node graph. Any guidance would be appreciated. On Oct 23, 10:21 am, jeffb jeffbo

[android-porting] Adding decoder to node graph

2009-10-23 Thread jeffb
I am new to android and am interested in adding a decoder to the pipeline/node graph. Can you give me pointers on the approach to take. Specifically, I have spent a lot of time looking at PVPlayerEngine and the advancement of the engine state machine. Am I making this too difficult?