wseemann.media
Interface FFmpegMediaPlayer.OnInfoListener
- Enclosing class:
- FFmpegMediaPlayer
public static interface FFmpegMediaPlayer.OnInfoListener
Interface definition of a callback to be invoked to communicate some
info and/or warning about the media or its playback.
onInfo
boolean onInfo(FFmpegMediaPlayer mp,
int what,
int extra)
- Called to indicate an info or a warning.
- Parameters:
mp
- the MediaPlayer the info pertains to.what
- the type of info or warning.
extra
- an extra code, specific to the info. Typically
implementation dependant.
- Returns:
- True if the method handled the info, false if it didn't.
Returning false, or not having an OnErrorListener at all, will
cause the info to be discarded.