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

📄 ibasicvideoimpl.java

📁 编辑视频文件
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * File:     IBasicVideoImpl.java * Project:  MPI Linguistic Application * Date:     02 May 2007 * * Copyright (C) 2001-2007  Max Planck Institute for Psycholinguistics * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package mpi.eudico.client.annotator.nativemedia.quartztypelib.impl;import com.jniwrapper.*;import com.jniwrapper.win32.*;import com.jniwrapper.win32.automation.*;import com.jniwrapper.win32.automation.impl.*;import com.jniwrapper.win32.automation.types.*;import com.jniwrapper.win32.com.*;import com.jniwrapper.win32.com.impl.*;import com.jniwrapper.win32.com.types.*;import mpi.eudico.client.annotator.nativemedia.quartztypelib.*;/** * Represents COM interface IBasicVideo */public class IBasicVideoImpl extends IDispatchImpl implements IBasicVideo {    /** Holds value of property DOCUMENT ME! */    public static final String INTERFACE_IDENTIFIER = IBasicVideo.INTERFACE_IDENTIFIER;    /** Holds value of property DOCUMENT ME! */    private static final IID _iid = IID.create(INTERFACE_IDENTIFIER);    /**     * Creates a new IBasicVideoImpl instance     */    public IBasicVideoImpl() {    }    /**     * Creates a new IBasicVideoImpl instance     *     * @param that DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    protected IBasicVideoImpl(IUnknownImpl that) throws ComException {        super(that);    }    /**     * Creates a new IBasicVideoImpl instance     *     * @param that DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public IBasicVideoImpl(IUnknown that) throws ComException {        super(that);    }    /**     * Creates a new IBasicVideoImpl instance     *     * @param clsid DOCUMENT ME!     * @param dwClsContext DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public IBasicVideoImpl(CLSID clsid, ClsCtx dwClsContext)        throws ComException {        super(clsid, dwClsContext);    }    /**     * Creates a new IBasicVideoImpl instance     *     * @param clsid DOCUMENT ME!     * @param pUnkOuter DOCUMENT ME!     * @param dwClsContext DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public IBasicVideoImpl(CLSID clsid, IUnknownImpl pUnkOuter,        ClsCtx dwClsContext) throws ComException {        super(clsid, pUnkOuter, dwClsContext);    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public DoubleFloat getAvgTimePerFrame() throws ComException {        DoubleFloat pAvgTimePerFrame = new DoubleFloat();        invokeStandardVirtualMethod(7, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pAvgTimePerFrame == null) ? (Parameter) PTR_NULL                                           : new Pointer.OutOnly(                    pAvgTimePerFrame)            });        return pAvgTimePerFrame;    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getBitRate() throws ComException {        Int32 pBitRate = new Int32();        invokeStandardVirtualMethod(8, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pBitRate == null) ? (Parameter) PTR_NULL                                   : new Pointer.OutOnly(pBitRate)            });        return pBitRate;    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getBitErrorRate() throws ComException {        Int32 pBitErrorRate = new Int32();        invokeStandardVirtualMethod(9, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pBitErrorRate == null) ? (Parameter) PTR_NULL                                        : new Pointer.OutOnly(pBitErrorRate)            });        return pBitErrorRate;    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getVideoWidth() throws ComException {        Int32 pVideoWidth = new Int32();        invokeStandardVirtualMethod(10, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pVideoWidth == null) ? (Parameter) PTR_NULL                                      : new Pointer.OutOnly(pVideoWidth)            });        return pVideoWidth;    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getVideoHeight() throws ComException {        Int32 pVideoHeight = new Int32();        invokeStandardVirtualMethod(11, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pVideoHeight == null) ? (Parameter) PTR_NULL                                       : new Pointer.OutOnly(pVideoHeight)            });        return pVideoHeight;    }    /**     * DOCUMENT ME!     *     * @param pSourceLeft DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setSourceLeft(Int32 /*[in]*/ pSourceLeft)        throws ComException {        invokeStandardVirtualMethod(12, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { pSourceLeft });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getSourceLeft() throws ComException {        Int32 pSourceLeft = new Int32();        invokeStandardVirtualMethod(13, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pSourceLeft == null) ? (Parameter) PTR_NULL                                      : new Pointer.OutOnly(pSourceLeft)            });        return pSourceLeft;    }    /**     * DOCUMENT ME!     *     * @param pSourceWidth DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setSourceWidth(Int32 /*[in]*/ pSourceWidth)        throws ComException {        invokeStandardVirtualMethod(14, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { pSourceWidth });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getSourceWidth() throws ComException {        Int32 pSourceWidth = new Int32();        invokeStandardVirtualMethod(15, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pSourceWidth == null) ? (Parameter) PTR_NULL                                       : new Pointer.OutOnly(pSourceWidth)            });        return pSourceWidth;    }    /**     * DOCUMENT ME!     *     * @param pSourceTop DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setSourceTop(Int32 /*[in]*/ pSourceTop)        throws ComException {        invokeStandardVirtualMethod(16, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { pSourceTop });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getSourceTop() throws ComException {        Int32 pSourceTop = new Int32();        invokeStandardVirtualMethod(17, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pSourceTop == null) ? (Parameter) PTR_NULL                                     : new Pointer.OutOnly(pSourceTop)            });        return pSourceTop;    }    /**     * DOCUMENT ME!     *     * @param pSourceHeight DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setSourceHeight(Int32 /*[in]*/ pSourceHeight)        throws ComException {        invokeStandardVirtualMethod(18, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { pSourceHeight });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getSourceHeight() throws ComException {        Int32 pSourceHeight = new Int32();        invokeStandardVirtualMethod(19, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pSourceHeight == null) ? (Parameter) PTR_NULL                                        : new Pointer.OutOnly(pSourceHeight)            });        return pSourceHeight;    }    /**     * DOCUMENT ME!     *     * @param pDestinationLeft DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setDestinationLeft(Int32 /*[in]*/ pDestinationLeft)        throws ComException {        invokeStandardVirtualMethod(20, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { pDestinationLeft });    }    /**     * DOCUMENT ME!     *

⌨️ 快捷键说明

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