]> git.sesse.net Git - vlc/blob - mozilla/vlcplugin.h
6cf9574dd9e7e830e72468130dc6ef8ffcb43afe
[vlc] / mozilla / vlcplugin.h
1 /*****************************************************************************
2  * vlcplugin.h: a VideoLAN plugin for Mozilla
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: vlcplugin.h,v 1.3 2002/09/17 08:18:24 sam Exp $
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*******************************************************************************
25  * Instance state information about the plugin.
26  ******************************************************************************/
27 class VlcPlugin
28 {
29 public:
30              VlcPlugin( NPP ); 
31     virtual ~VlcPlugin();
32
33     void     SetInstance( NPP );
34     NPP      GetInstance();
35
36     void     SetFileName( const char* );
37     void     Play();
38     void     Pause();
39     void     Stop();
40
41     VlcIntf* getScriptable();
42
43     /* Window settings */
44     NPWindow* fWindow;
45     uint16 fMode;
46
47     /* UNIX data members */
48     Window window;
49     Display *display;
50     uint32 x, y;
51     uint32 width, height;
52
53     /* vlc data members */
54     vlc_t *  p_vlc;
55     int      b_stream;
56     char *   psz_target;
57
58 private:
59     NPP      p_instance;
60     VlcPeer* p_peer;
61 };
62
63 /*******************************************************************************
64  * Plugin properties.
65  ******************************************************************************/
66 #define PLUGIN_NAME         "VideoLAN Client Plug-in"
67 #define PLUGIN_DESCRIPTION \
68     "VideoLAN Client Multimedia Player Plugin <br>" \
69     " <br>" \
70     /*COPYRIGHT_MESSAGE*/ " <br>" \
71     "VideoLAN WWW: <a href=\"http://www.videolan.org/\">http://www.videolan.org/</a>"
72
73 #define PLUGIN_MIMETYPES \
74     /* MPEG-1 and MPEG-2 */ \
75     "audio/mpeg:mp2,mp3,mpga,mpega:MPEG audio;" \
76     "audio/x-mpeg:mp2,mp3,mpga,mpega:MPEG audio;" \
77     "video/mpeg:mpg,mpeg,mpe:MPEG video;" \
78     "video/x-mpeg:mpg,mpeg,mpe:MPEG video;" \
79     "video/mpeg-system:mpg,mpeg,mpe,vob:MPEG video;" \
80     "video/x-mpeg-system:mpg,mpeg,mpe,vob:MPEG video;" \
81     /* MPEG-4 */ \
82     "video/mpeg4:mp4,mpg4:MPEG-4 video;" \
83     "audio/mpeg4:mp4,mpg4:MPEG-4 audio;" \
84     "application/mpeg4-iod:mp4,mpg4:MPEG-4 video;" \
85     "application/mpeg4-muxcodetable:mp4,mpg4:MPEG-4 video;" \
86     /* AVI */ \
87     "video/x-msvideo:avi:AVI video;" \
88     /* QuickTime */ \
89     "video/quicktime:mov,qt:QuickTime video;" \
90     /* explicit plugin call */ \
91     "application/x-vlc-plugin::VLC plugin"
92