> When I checked the Logcat, I noticed the two applications were issuing > different Intents. Intent is same., except that minor diff what u see is => file argument is absolute path in file manager, and in case of gallery app, relative clip database path is passed.. Its good as long as com.cooliris.media/.MovieView is used., (also it could be stagefright/opencore underneath, runtime switchable)
More critical difference is, hows WxH is different (assuming you use same clip) D/TIOverlay( 894): overlay_createOverlay:IN w=640 h=480 format=22 D/TIOverlay( 894): overlay_createOverlay:IN w=352 h=288 format=22 Check for dsp codec error logs. Probably wrong WxH is communicated to codec during VideoOutputPort Configuration, and codec stopped giving o/p, so no frame;s sent to TIHwRenderer (less logs, but you dont see FPS prints). So, that you confirmed, u have to see what causes it. I would suggest enable more logs in stagefright player driver (/frameworks/base/media/libstagefright/AwesomePlayer.cpp) and decoder (./frameworks/base/media/libstagefright/AwesomePlayer.cpp), for next level of hints... -- Regards, Deva www.bittoggler.com On Wed, Oct 13, 2010 at 8:39 PM, Joseph, Arun <[email protected]> wrote: > I was trying to play one video [h264 – 3gp 352x288] from Gallery on OMAP35XX > EVM booted up with rowboat froyo port.[arowboat.org]. > > I am able to hear audio, but no display is coming. But when I seek to > different positions, I am able to see decoded snapshots. > > > > But with one File Manager application I could play the video correctly by > clicking on the item. > > > > When I checked the Logcat, I noticed the two applications were issuing > different Intents. > > > > Gallery > > > > I/ActivityManager( 894): Starting activity: Intent { > act=android.intent.action. > > VIEW dat=content://media/external/video/media/7 typ=video/mp4 cm > > p=com.cooliris.media/.MovieView } > > > > File Manager > > > > I/ActivityManager( 894): Starting activity: Intent { > act=android.intent.action. > > VIEW dat=file:///mnt/sdcard/images/marcelo_h264-528_aac-64.3gp > typ=video/3gpp cm > > p=com.cooliris.media/.MovieView } > > > > I have attached the logcat output for both the cases. > > > > Please suggest what would have been gone wrong for the video started from > Gallery. > > > > Thanks & Regards, > > Arun > > > > > > > > > > > > -- > You received this message because you are subscribed to the Google Groups > "rowboat" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/rowboat?hl=en. > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

