]> git.sesse.net Git - vlc/blob - mozilla/vlcplugin.h
* ./configure.in: workaround Debian bug #150490 (bad mozilla-config output).
[vlc] / mozilla / vlcplugin.h
1 /*****************************************************************************
2  * videolan.c: a VideoLAN plugin for Mozilla
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: vlcplugin.h,v 1.2 2002/07/23 20:12:55 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 typedef struct _PluginInstance
28 {
29     NPWindow* fWindow;
30     uint16 fMode;
31
32     /* UNIX data members */
33     Window window;
34     Display *display;
35     uint32 x, y;
36     uint32 width, height;
37
38     /* vlc data members */
39     vlc_t *p_vlc;
40     int b_stream;
41     char *psz_target;
42
43 } PluginInstance;
44
45 /*******************************************************************************
46  * Plugin properties.
47  ******************************************************************************/
48 #define PLUGIN_NAME         "VideoLAN Client Plug-in"
49 #define PLUGIN_DESCRIPTION \
50     "VideoLAN Client Multimedia Player Plugin <br>" \
51     " <br>" \
52     COPYRIGHT_MESSAGE " <br>" \
53     "VideoLAN WWW: <a href=\"http://www.videolan.org/\">http://www.videolan.org/</a>"
54
55 #define PLUGIN_MIMETYPES \
56     /* MPEG-1 and MPEG-2 */ \
57     "audio/mpeg:mp2,mp3,mpga,mpega:MPEG audio;" \
58     "audio/x-mpeg:mp2,mp3,mpga,mpega:MPEG audio;" \
59     "video/mpeg:mpg,mpeg,mpe:MPEG video;" \
60     "video/x-mpeg:mpg,mpeg,mpe:MPEG video;" \
61     "video/mpeg-system:mpg,mpeg,mpe,vob:MPEG video;" \
62     "video/x-mpeg-system:mpg,mpeg,mpe,vob:MPEG video;" \
63     /* MPEG-4 */ \
64     "video/mpeg4:mp4,mpg4:MPEG-4 video;" \
65     "audio/mpeg4:mp4,mpg4:MPEG-4 audio;" \
66     "application/mpeg4-iod:mp4,mpg4:MPEG-4 video;" \
67     "application/mpeg4-muxcodetable:mp4,mpg4:MPEG-4 video;" \
68     /* AVI */ \
69     "video/x-msvideo:avi:AVI video;" \
70     /* QuickTime */ \
71     "video/quicktime:mov,qt:QuickTime video;" \
72     /* explicit plugin call */ \
73     "application/x-vlc-plugin::VLC plugin"
74