]> git.sesse.net Git - vlc/blob - bindings/java/org/videolan/jvlc/event/MediaInstanceCallback.java
c5f5329143f8af7a40b8268e714204c80a866db7
[vlc] / bindings / java / org / videolan / jvlc / event / MediaInstanceCallback.java
1 /*****************************************************************************
2  * MediaInstancePlayCallback.java: VLC Java Bindings
3  *****************************************************************************
4  * Copyright (C) 1998-2008 the VideoLAN team
5  *
6  * Authors: Filippo Carone <filippo@carone.org>
7  *
8  *
9  * $Id $
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 package org.videolan.jvlc.event;
27
28 import org.videolan.jvlc.MediaInstance;
29 import org.videolan.jvlc.internal.LibVlc;
30 import org.videolan.jvlc.internal.LibVlcEventType;
31 import org.videolan.jvlc.internal.LibVlc.LibVlcCallback;
32 import org.videolan.jvlc.internal.LibVlc.libvlc_event_t;
33 import org.videolan.jvlc.internal.LibVlc.media_instance_time_changed;
34
35 import com.sun.jna.Pointer;
36
37
38 public class MediaInstanceCallback implements LibVlcCallback
39 {
40
41     private MediaInstanceListener listener;
42     private MediaInstance mediaInstance;
43
44     public MediaInstanceCallback(MediaInstance mediaInstance, MediaInstanceListener listener)
45     {
46         this.mediaInstance = mediaInstance;
47         this.listener = listener;
48     }
49     /**
50      * {@inheritDoc}
51      */
52     @Override
53     public void callback(libvlc_event_t libvlc_event, Pointer userData)
54     {
55         if (libvlc_event.type == LibVlcEventType.libvlc_MediaInstancePlayed.ordinal())
56         {
57             listener.played(mediaInstance);
58         }
59         else if (libvlc_event.type == LibVlcEventType.libvlc_MediaInstancePaused.ordinal())
60         {
61             listener.paused(mediaInstance);
62         }
63         else if (libvlc_event.type == LibVlcEventType.libvlc_MediaInstanceReachedEnd.ordinal())
64         {
65             listener.endReached(mediaInstance);
66         }
67         else if (libvlc_event.type == LibVlcEventType.libvlc_MediaInstancePositionChanged.ordinal())
68         {
69             listener.positionChanged(mediaInstance);
70         }
71         else if (libvlc_event.type == LibVlcEventType.libvlc_MediaInstanceTimeChanged.ordinal())
72         {
73             libvlc_event.event_type_specific.setType(LibVlc.media_instance_time_changed.class);
74             LibVlc.media_instance_time_changed timeChanged = (media_instance_time_changed) libvlc_event.event_type_specific
75                 .readField("media_instance_time_changed");
76             listener.timeChanged(mediaInstance, timeChanged.new_time);
77         }
78         else
79         {
80             throw new RuntimeException("Unsupported event error. Event id: " + libvlc_event.type);
81         }
82     }
83 }