/**@class android.media.MediaPlayer.OnMediaTimeDiscontinuityListener
 Interface definition of a callback to be invoked when discontinuity in the normal progression
 of the media time is detected.
 The "normal progression" of media time is defined as the expected increase of the playback
 position when playing media, relative to the playback speed (for instance every second, media
 time increases by two seconds when playing at 2x).<br>
 Discontinuities are encountered in the following cases:
 <ul>
 <li>when the player is starved for data and cannot play anymore</li>
 <li>when the player encounters a playback error</li>
 <li>when the a seek operation starts, and when it's completed</li>
 <li>when the playback speed changes</li>
 <li>when the playback state changes</li>
 <li>when the player is reset</li>
 </ul>
 See the
 {@link android.media.MediaPlayer#setOnMediaTimeDiscontinuityListener(OnMediaTimeDiscontinuityListener, Handler)}
 method to set a listener for these events.
*/
var OnMediaTimeDiscontinuityListener = {

/**Called to indicate a time discontinuity has occured.
@param {Object {MediaPlayer}} mp the MediaPlayer for which the discontinuity has occured.
@param {Object {MediaTimestamp}} mts the timestamp that correlates media time, system time and clock rate,
     or {@link MediaTimestamp#TIMESTAMP_UNKNOWN} in an error case.
*/
onMediaTimeDiscontinuity : function(  ) {},


};