]> git.sesse.net Git - vlc/blob - mozilla/vlcplugin.h
e98292c069d804a0abe82ab92f8ef2b3cea5b732
[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.7 2002/10/25 18:17:59 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* p_npwin;
41     uint16    i_npmode;
42     uint32    i_width, i_height;
43
44 #ifdef XP_WIN
45     /* Windows data members */
46     HWND     p_hwnd;
47     WNDPROC  pf_wndproc;
48 #endif
49
50 #ifdef XP_UNIX
51     /* UNIX data members */
52     Window   window;
53     Display *p_display;
54 #endif
55
56     /* vlc data members */
57     int      i_vlc;
58     int      b_stream;
59     int      b_autoplay;
60     char *   psz_target;
61
62 private:
63     NPP      p_instance;
64     VlcPeer* p_peer;
65 };
66
67 /*******************************************************************************
68  * Plugin properties.
69  ******************************************************************************/
70 #define PLUGIN_NAME         "VideoLAN Client Plugin"
71 #define PLUGIN_DESCRIPTION \
72     "VideoLAN Client Multimedia Player Plugin <br>" \
73     " <br>" \
74     "version %s <br>" \
75     "VideoLAN WWW: <a href=\"http://www.videolan.org/\">http://www.videolan.org/</a>"
76
77 #define PLUGIN_MIMETYPES \
78     /* MPEG-1 and MPEG-2 */ \
79     "audio/mpeg:mp2,mp3,mpga,mpega:MPEG audio;" \
80     "audio/x-mpeg:mp2,mp3,mpga,mpega:MPEG audio;" \
81     "video/mpeg:mpg,mpeg,mpe:MPEG video;" \
82     "video/x-mpeg:mpg,mpeg,mpe:MPEG video;" \
83     "video/mpeg-system:mpg,mpeg,mpe,vob:MPEG video;" \
84     "video/x-mpeg-system:mpg,mpeg,mpe,vob:MPEG video;" \
85     /* MPEG-4 */ \
86     "video/mpeg4:mp4,mpg4:MPEG-4 video;" \
87     "audio/mpeg4:mp4,mpg4:MPEG-4 audio;" \
88     "application/mpeg4-iod:mp4,mpg4:MPEG-4 video;" \
89     "application/mpeg4-muxcodetable:mp4,mpg4:MPEG-4 video;" \
90     /* AVI */ \
91     "video/x-msvideo:avi:AVI video;" \
92     /* QuickTime */ \
93     "video/quicktime:mov,qt:QuickTime video;" \
94     /* explicit plugin call */ \
95     "application/x-vlc-plugin::VLC plugin"
96