7 Star 31 Fork 18

bbcallen / ijkplayer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
IMediaPlayer.java 5.08 KB
一键复制 编辑 原始数据 按行查看 历史
bbcallen 提交于 2014-12-03 10:57 . android/IMediaPlayer: public method
/*
* Copyright (C) 2013-2014 Zhang Rui <bbcallen@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package tv.danmaku.ijk.media.player;
import java.io.IOException;
import android.annotation.TargetApi;
import android.content.Context;
import android.os.Build;
import android.view.Surface;
import android.view.SurfaceHolder;
public interface IMediaPlayer {
/*
* Do not change these values without updating their counterparts in native
*/
public static final int MEDIA_INFO_UNKNOWN = 1;
public static final int MEDIA_INFO_STARTED_AS_NEXT = 2;
public static final int MEDIA_INFO_VIDEO_RENDERING_START = 3;
public static final int MEDIA_INFO_VIDEO_TRACK_LAGGING = 700;
public static final int MEDIA_INFO_BUFFERING_START = 701;
public static final int MEDIA_INFO_BUFFERING_END = 702;
public static final int MEDIA_INFO_BAD_INTERLEAVING = 800;
public static final int MEDIA_INFO_NOT_SEEKABLE = 801;
public static final int MEDIA_INFO_METADATA_UPDATE = 802;
public static final int MEDIA_INFO_TIMED_TEXT_ERROR = 900;
public static final int MEDIA_ERROR_UNKNOWN = 1;
public static final int MEDIA_ERROR_SERVER_DIED = 100;
public static final int MEDIA_ERROR_NOT_VALID_FOR_PROGRESSIVE_PLAYBACK = 200;
public static final int MEDIA_ERROR_IO = -1004;
public static final int MEDIA_ERROR_MALFORMED = -1007;
public static final int MEDIA_ERROR_UNSUPPORTED = -1010;
public static final int MEDIA_ERROR_TIMED_OUT = -110;
public abstract void setDisplay(SurfaceHolder sh);
public abstract void setDataSource(String path) throws IOException,
IllegalArgumentException, SecurityException, IllegalStateException;
public abstract String getDataSource();
public abstract void prepareAsync() throws IllegalStateException;
public abstract void start() throws IllegalStateException;
public abstract void stop() throws IllegalStateException;
public abstract void pause() throws IllegalStateException;
public abstract void setScreenOnWhilePlaying(boolean screenOn);
public abstract int getVideoWidth();
public abstract int getVideoHeight();
public abstract boolean isPlaying();
public abstract void seekTo(long msec) throws IllegalStateException;
public abstract long getCurrentPosition();
public abstract long getDuration();
public abstract void release();
public abstract void reset();
public abstract void setVolume(float leftVolume, float rightVolume);
public abstract MediaInfo getMediaInfo();
public abstract void setLogEnabled(boolean enable);
public abstract boolean isPlayable();
public abstract void setOnPreparedListener(OnPreparedListener listener);
public abstract void setOnCompletionListener(OnCompletionListener listener);
public abstract void setOnBufferingUpdateListener(
OnBufferingUpdateListener listener);
public abstract void setOnSeekCompleteListener(
OnSeekCompleteListener listener);
public abstract void setOnVideoSizeChangedListener(
OnVideoSizeChangedListener listener);
public abstract void setOnErrorListener(OnErrorListener listener);
public abstract void setOnInfoListener(OnInfoListener listener);
/*--------------------
* Listeners
*/
public static interface OnPreparedListener {
public void onPrepared(IMediaPlayer mp);
}
public static interface OnCompletionListener {
public void onCompletion(IMediaPlayer mp);
}
public static interface OnBufferingUpdateListener {
public void onBufferingUpdate(IMediaPlayer mp, int percent);
}
public static interface OnSeekCompleteListener {
public void onSeekComplete(IMediaPlayer mp);
}
public static interface OnVideoSizeChangedListener {
public void onVideoSizeChanged(IMediaPlayer mp, int width, int height,
int sar_num, int sar_den);
}
public static interface OnErrorListener {
public boolean onError(IMediaPlayer mp, int what, int extra);
}
public static interface OnInfoListener {
public boolean onInfo(IMediaPlayer mp, int what, int extra);
}
/*--------------------
* Optional
*/
public abstract void setAudioStreamType(int streamtype);
public abstract void setKeepInBackground(boolean keepInBackground);
public abstract int getVideoSarNum();
public abstract int getVideoSarDen();
@Deprecated
public abstract void setWakeMode(Context context, int mode);
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
public abstract void setSurface(Surface surface);
}
C
1
https://gitee.com/bbcallen/ijkplayer.git
git@gitee.com:bbcallen/ijkplayer.git
bbcallen
ijkplayer
ijkplayer
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891