[osg-users] Plugin for loading models

2013-12-04 Thread David Longest
function pipeline which OpenGL ES 2.0 does not have available. I don't know if fbx is any better. Are there other formats that support built-in animations that I'm just not aware of? Thank you so much in advance for your time! [APX Labs logo] David Longest Software Engineer APX Labs 2350

[osg-users] Removing and re-adding an update callback

2013-03-28 Thread David Longest
Hello, I have encountered a crash bug when re-adding an update callback that has nested callbacks from OSG trunk's revision 13155. What seems to happen is that the nested callbacks are not cleared when a callback is removed from the middle of the nestedcallback linked list, causing a stack

Re: [osg-users] [build] How to play Video on Android

2013-02-11 Thread David Longest
Koduri, Code: 02-09 14:01:41.114: W/Osg Viewer(14026): FFmpegImageStream::open : av_open_input_file() failed 02-09 14:01:41.118: W/Osg Viewer(14026): Warning: Could not find plugin to read objects from file /mnt/sdcard/VideoTest/1.avi.ffmpeg. This leads me to believe you either don't have

Re: [osg-users] [build] How to play Video on Android

2013-02-06 Thread David Longest
Koduri, As long as you are able to link the libav* libraries, the plugin should work. Where are you storing the video file? You should also be able to see what is happening by catching logs from OSG using the NotifyHandler. David ___ osg-users

Re: [osg-users] [build] How to play Video on Android

2013-02-01 Thread David Longest
Koduri, When I use jpeg plugin, I did the following things 1) USE_OSGPLUGIN(jpeg) in .h file 2) Added -ljpeg to LOCAL_LDLIBS in Android.mk file 3) Added -losgdb_jpeg \ to LOCAL_LDFLAGS in Android.mk file. Similarly I need to do for ffmpeg plugin also. I added -lffmpeg to LOCAL_LDLIBS

[osg-users] Updated FFmpeg plugin

2012-09-24 Thread David Longest
Hello! I have been making updates to the FFmpeg plugin that I believe would be useful for others using OpenSceneGraph. The updates mostly revolve around changing the plugin to use APIs from FFmpeg 0.11. Since the previously supported version of FFmpeg is at least two years old, is it important