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

2009-11-17 Thread RaviY
You would need to look at PVMFNodeInterface and PVMFNodeInterfaceImpl. PVMFNodeInterface --- This is the actual interface. PVMFNodeInterfaceImpl --- This is the base node implementation. You can create a node from scratch by deriving from PVMFNodeInterface. Or, you can derive from PVMFNodeInterfa

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

2009-11-17 Thread jeffb
Ravi, Thanks for the reply. I understand the need to implement the PVMFNodeInterface as the baseline interface for a parser node. But I was wondering about the interfaces that must be implemented to enable a node (parser and recognizer functionality) to be registered dynamically (i.e. when opencore

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

2009-11-17 Thread RaviY
Did you look at the mp4 parser node/recognizer? http://android.git.kernel.org/?p=platform/external/opencore.git;a=tree;f=modules/linux_mp4;h=e3d550d29ee3d2070ddf4c8e791077f0d956043b;hb=582c0d57052faafdce3a57e47533d341d407418e -Ravi On Nov 17, 12:54 pm, jeffb wrote: > Ravi, > Thanks for the rep

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

2009-11-23 Thread jeffb
Ravi, Sorry for the delayed response. I was out of the office. I am still not sure I understand. Here is what I think I understand: 1) there are static modules such as the mp4 parser and recognizer. These are added to the registry during the execution of the PVPlayerRegistryPopulator::Populate() m