⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 input.java

📁 uclinux 下的vlc播放器源代码
💻 JAVA
字号:
package org.videolan.jvlc;public class Input implements InputIntf {	    private long libvlcInstance;	/*     *  Input native methods     */    private native long     _getLength();    private native float    _getPosition();    private native long     _getTime();    private native float	_getFPS();    private native void		_setTime(long value);    private native void		_setPosition(float value);    private native boolean  _isPlaying();    private native boolean  _hasVout();        public Input( long instance ) {    	this.libvlcInstance = instance;    }	public long getLength() throws VLCException {        return _getLength();            }    public long getTime() throws VLCException {        return _getTime();    }    public float getPosition() throws VLCException {        return _getPosition();            }    public void setTime(long time) throws VLCException {    	_setTime(time);    }    public void setPosition(float position) throws VLCException {    	_setPosition(position);    }    public double getFPS() throws VLCException {        return _getFPS();    }        public boolean isPlaying() throws VLCException {        return _isPlaying();    }    public boolean hasVout() throws VLCException {        return _hasVout();    }    	public long getInstance() {		return libvlcInstance;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -