/***************************************************************************** * Video.java: JVLC Video Output ***************************************************************************** * * Copyright (C) 1998-2008 the VideoLAN team * * Author: Filippo Carone <filippo@carone.org> * Philippe Morin <phmorin@free.fr> * * Created on 28-feb-2006 * * $Id: JVLC.java 20141 2007-05-16 19:31:35Z littlejohn $ * * 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * */ package org.videolan.jvlc; import java.awt.Dimension; import org.videolan.jvlc.internal.LibVlc; import org.videolan.jvlc.internal.LibVlc.LibVlcInstance; import org.videolan.jvlc.internal.LibVlc.libvlc_exception_t; public class Video { private final LibVlcInstance libvlcInstance; private final LibVlc libvlc; public Video( JVLC jvlc) { this.libvlcInstance = jvlc.getInstance(); this.libvlc = jvlc.getLibvlc(); } /* (non-Javadoc) * @see org.videolan.jvlc.VideoIntf#destroyVideo() */ public void destroyVideo(MediaPlayer media) { libvlc_exception_t exception = new libvlc_exception_t(); libvlc.libvlc_video_destroy(media.getInstance(), exception ); } /* (non-Javadoc) * @see org.videolan.jvlc.VideoIntf#getFullscreen() */ public boolean getFullscreen(MediaPlayer media) { libvlc_exception_t exception = new libvlc_exception_t(); return libvlc.libvlc_get_fullscreen(media.getInstance(), exception) == 1 ? true : false; } /* (non-Javadoc) * @see org.videolan.jvlc.VideoIntf#getSnapshot(java.lang.String) */ public void getSnapshot(MediaPlayer media, String filepath, int width, int height) { libvlc_exception_t exception = new libvlc_exception_t(); libvlc.libvlc_video_take_snapshot(media.getInstance(), filepath, width, height, exception); } /* (non-Javadoc) * @see org.videolan.jvlc.VideoIntf#getVideoHeight() */ public int getHeight(MediaPlayer media) { libvlc_exception_t exception = new libvlc_exception_t(); return libvlc.libvlc_video_get_height(media.getInstance(), exception); } /* (non-Javadoc) * @see org.videolan.jvlc.VideoIntf#getVideoWidth() */ public int getWidth(MediaPlayer media) { libvlc_exception_t exception = new libvlc_exception_t(); return libvlc.libvlc_video_get_height(media.getInstance(), exception); } /* (non-Javadoc) * @see org.videolan.jvlc.VideoIntf#reparentVideo(java.awt.Component) */ public void reparent(MediaPlayer media, java.awt.Canvas canvas) { libvlc_exception_t exception = new libvlc_exception_t(); long drawable = com.sun.jna.Native.getComponentID(canvas); libvlc.libvlc_video_reparent(media.getInstance(), drawable, exception); } /* (non-Javadoc) * @see org.videolan.jvlc.VideoIntf#resizeVideo(int, int) */ public void setSize(int width, int height) { libvlc_exception_t exception = new libvlc_exception_t(); libvlc.libvlc_video_set_size(libvlcInstance, width, height, exception); } /* (non-Javadoc) * @see org.videolan.jvlc.VideoIntf#setFullscreen(boolean) */ public void setFullscreen(MediaPlayer media, boolean fullscreen) { libvlc_exception_t exception = new libvlc_exception_t(); libvlc.libvlc_set_fullscreen(media.getInstance(), fullscreen? 1 : 0, exception); } /* (non-Javadoc) * @see org.videolan.jvlc.VideoIntf#toggleFullscreen() */ public void toggleFullscreen(MediaPlayer media) { libvlc_exception_t exception = new libvlc_exception_t(); libvlc.libvlc_toggle_fullscreen(media.getInstance(), exception); } /* (non-Javadoc) * @see org.videolan.jvlc.VideoIntf#getSize() */ public Dimension getSize(MediaPlayer media) { return new Dimension (getWidth(media), getHeight(media)); } /* (non-Javadoc) * @see org.videolan.jvlc.VideoIntf#setSize(java.awt.Dimension) */ public void setSize(Dimension d) { setSize(d.width, d.height); } }