Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
97f2fb96
Commit
97f2fb96
authored
Aug 27, 2003
by
Simon Latapie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Now the MacOS mozilla plugin is an independant bundle ( searchs no more
* in /usr/local/lib/vlc for modules )
parent
92a149be
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
1 deletion
+29
-1
mozilla/Makefile.am
mozilla/Makefile.am
+2
-0
mozilla/vlcshell.cpp
mozilla/vlcshell.cpp
+27
-1
No files found.
mozilla/Makefile.am
View file @
97f2fb96
...
...
@@ -96,6 +96,8 @@ VLC\ Plugin.plugin:
cp
$(top_srcdir)
/extras/MacOSX/plugin/pbdevelopment.plist
$(srcdir)
/VLC
\
Plugin.plugin/Contents/pbdevelopment.plist
cp
-r
$(top_srcdir)
/extras/MacOSX/plugin/English.lproj
$(srcdir)
/VLC
\
Plugin.plugin/Contents/Resources/
Rez /Developer/Headers/FlatCarbon/Types.r
$(srcdir)
/vlc.r
-o
$(srcdir)
/VLC
\
Plugin.plugin/Contents/Resources/Vlc
\
Plugin.rsrc
mkdir
$(srcdir)
/VLC
\
Plugin.plugin/Contents/MacOS/modules
cp
-r
$(top_srcdir)
/VLC.app/Contents/MacOS/modules/
*
$(srcdir)
/VLC
\
Plugin.plugin/Contents/MacOS/modules/
endif
endif
...
...
mozilla/vlcshell.cpp
View file @
97f2fb96
...
...
@@ -2,7 +2,7 @@
* vlcshell.cpp: a VLC plugin for Mozilla
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: vlcshell.cpp,v 1.
19 2003/08/25 14:51:49
garf Exp $
* $Id: vlcshell.cpp,v 1.
20 2003/08/27 07:21:07
garf Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -242,12 +242,31 @@ NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
#if USE_LIBVLC
vlc_value_t
value
;
int
i_ret
;
char
*
home_user
;
char
*
plugin_path
;
char
*
directory
;
#ifdef XP_MACOSX
home_user
=
strdup
(
getenv
(
"HOME"
)
);
directory
=
strdup
(
"/Library/Internet Plug-Ins/VLC Plugin.plugin/Contents/MacOS/modules"
);
plugin_path
=
malloc
(
strlen
(
directory
)
+
strlen
(
home_user
)
);
memcpy
(
plugin_path
,
home_user
,
strlen
(
home_user
)
);
memcpy
(
plugin_path
+
strlen
(
home_user
)
,
directory
,
strlen
(
directory
)
);
char
*
ppsz_foo
[]
=
{
"vlc"
/* , "--plugin-path", "/Library/Internet Plug-Ins/VLC Plugin.plugin/Contents/MacOS/modules" */
,
"--plugin-path"
,
plugin_path
,
"--filter invert"
};
#else
char
*
ppsz_foo
[]
=
{
"vlc"
/*, "--plugin-path", "/home/sam/videolan/vlc_MAIN/plugins"*/
};
#endif
#endif
if
(
instance
==
NULL
)
...
...
@@ -299,6 +318,12 @@ NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
return
NPERR_GENERIC_ERROR
;
}
#ifdef XP_MACOSX
free
(
home_user
);
free
(
directory
);
free
(
plugin_path
);
#endif
value
.
psz_string
=
"dummy"
;
VLC_Set
(
p_plugin
->
i_vlc
,
"conf::intf"
,
value
);
value
.
psz_string
=
VOUT_PLUGINS
;
...
...
@@ -472,6 +497,7 @@ NPError NPP_SetWindow( NPP instance, NPWindow* window )
text
=
strdup
(
WINDOW_TEXT
);
MoveTo
(
valuew
.
i_int
/
2
-
40
,
valueh
.
i_int
/
2
);
DrawText
(
text
,
0
,
strlen
(
text
)
);
free
(
text
);
#else
/* FIXME: this cast sucks */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment