/**@class android.media.MediaPlayer.OnTimedMetaDataAvailableListener Interface definition of a callback to be invoked when a track has timed metadata available. @see MediaPlayer#setOnTimedMetaDataAvailableListener(OnTimedMetaDataAvailableListener) */ var OnTimedMetaDataAvailableListener = { /**Called to indicate avaliable timed metadata <p> This method will be called as timed metadata is extracted from the media, in the same order as it occurs in the media. The timing of this event is not controlled by the associated timestamp. @param {Object {MediaPlayer}} mp the MediaPlayer associated with this callback @param {Object {TimedMetaData}} data the timed metadata sample associated with this event */ onTimedMetaDataAvailable : function( ) {}, };