]> git.sesse.net Git - vlc/blob - mozilla/vlcplugin.h
* ./mozilla/*: preliminary Mozilla plugin. Only works under Unix for now.
[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.1 2002/07/04 18:11:57 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  "VideoLAN Client (VLC) Multimedia Player Plug-in"
50
51 #define PLUGIN_MIMETYPES \
52     /* MPEG audio */ \
53     "audio/mpeg:mp2,mp3:MPEG audio;" \
54     "audio/x-mpeg:mp2,mp3:MPEG audio;" \
55     /* MPEG video */ \
56     "video/mpeg:mpg,mpeg:MPEG video;" \
57     "video/x-mpeg:mpg,mpeg:MPEG video;" \
58     "video/mpeg-system:mpg,mpeg:MPEG video;" \
59     "video/x-mpeg-system:mpg,mpeg:MPEG video;" \
60     /* AVI video */ \
61     "video/x-msvideo:avi:AVI video;" \
62     /* explicit plugin call */ \
63     "application/x-vlc-plugin::VLC plugin"
64