]> git.sesse.net Git - vlc/blob - mozilla/vlcplugin.h
* ALL: the build mechanism now uses automake. See HACKING for more details.
[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.4 2002/09/30 11:05:41 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     VlcIntf* GetPeer();
36
37     void     SetFileName( const char* );
38
39     /* Window settings */
40     NPWindow* fWindow;
41     uint16 fMode;
42
43     /* UNIX data members */
44     Window window;
45     Display *display;
46     uint32 x, y;
47     uint32 width, height;
48
49     /* vlc data members */
50     vlc_t *  p_vlc;
51     int      b_stream;
52     int      b_autoplay;
53     char *   psz_target;
54
55 private:
56     NPP      p_instance;
57     VlcPeer* p_peer;
58 };
59
60 /*******************************************************************************
61  * Plugin properties.
62  ******************************************************************************/
63 #define PLUGIN_NAME         "VideoLAN Client Plug-in"
64 #define PLUGIN_DESCRIPTION \
65     "VideoLAN Client Multimedia Player Plugin <br>" \
66     " <br>" \
67     /*COPYRIGHT_MESSAGE*/ " <br>" \
68     "VideoLAN WWW: <a href=\"http://www.videolan.org/\">http://www.videolan.org/</a>"
69
70 #define PLUGIN_MIMETYPES \
71     /* MPEG-1 and MPEG-2 */ \
72     "audio/mpeg:mp2,mp3,mpga,mpega:MPEG audio;" \
73     "audio/x-mpeg:mp2,mp3,mpga,mpega:MPEG audio;" \
74     "video/mpeg:mpg,mpeg,mpe:MPEG video;" \
75     "video/x-mpeg:mpg,mpeg,mpe:MPEG video;" \
76     "video/mpeg-system:mpg,mpeg,mpe,vob:MPEG video;" \
77     "video/x-mpeg-system:mpg,mpeg,mpe,vob:MPEG video;" \
78     /* MPEG-4 */ \
79     "video/mpeg4:mp4,mpg4:MPEG-4 video;" \
80     "audio/mpeg4:mp4,mpg4:MPEG-4 audio;" \
81     "application/mpeg4-iod:mp4,mpg4:MPEG-4 video;" \
82     "application/mpeg4-muxcodetable:mp4,mpg4:MPEG-4 video;" \
83     /* AVI */ \
84     "video/x-msvideo:avi:AVI video;" \
85     /* QuickTime */ \
86     "video/quicktime:mov,qt:QuickTime video;" \
87     /* explicit plugin call */ \
88     "application/x-vlc-plugin::VLC plugin"
89