1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-11 06:21:30 +02:00
Commit Graph

87 Commits

Author SHA1 Message Date
Rémi Denis-Courmont
3284ec0bc5 - experimental disabled-by-default shared libvlc build.
I said "experimental". I meant it.
  Developers might try --enable-shared-libvlc
- remove autom4te*.cache on bootstrap
  (some customized autoconf add their version number)
- some clean up
2005-08-20 12:30:12 +00:00
Rémi Denis-Courmont
7b2a1b3c37 Get rid of the UNTRUE conditionnal
and some other Makefile cleanup
2005-08-13 08:12:37 +00:00
Sam Hocevar
1671f59695 * mozilla/support/npunix.c: amd64 issue fix, NPP_GetJavaClass wasn't defined. 2005-08-10 14:19:32 +00:00
Rémi Denis-Courmont
fe087a3828 Make Zorglub less unhappy 2005-07-09 06:17:09 +00:00
Rémi Denis-Courmont
85b29bdc28 Copyright fixes
(da big courmischage)
2005-07-08 18:12:44 +00:00
Gildas Bazin
5ff8a38b86 * mozilla/vlcplugin.h: fixed mimetypes string. 2005-06-29 17:13:31 +00:00
Gildas Bazin
9d3fbf4c4a * mozilla/vlcplugin.h: compilation fix. 2005-06-29 17:08:54 +00:00
Antoine Cellerier
9b344d57bc this should fix compilation (if someone could backport this fix ... and
test it)
2005-06-29 05:54:43 +00:00
Clément Stenac
09102a649c Fix warning 2005-06-27 21:30:44 +00:00
Antoine Cellerier
b8fa2effb8 forward port 11582 2005-06-27 20:56:58 +00:00
Antoine Cellerier
c0349add62 forward port 11580 2005-06-27 20:27:10 +00:00
Clément Stenac
2917b1a65a Also fix mozilla when not in debug mode 2005-06-27 18:18:55 +00:00
Clément Stenac
981c7b9196 Don't continously resize mozilla plugin window - Closes #139 2005-06-20 19:43:52 +00:00
Antoine Cellerier
d026e61f6d forwardport 11445 2005-06-17 12:37:42 +00:00
Antoine Cellerier
c3512a49e8 yet some more copyright date updates ... (2002 was quite old) 2005-06-07 00:00:03 +00:00
Antoine Cellerier
02b648018c update VLC moz plugin copyright date 2005-06-06 23:56:06 +00:00
Clément Stenac
dcee738bbe Fix loop in mozilla plugin (closes #138) 2005-05-22 14:52:26 +00:00
Jean-Paul Saman
16caa3618b Make compilation of mozilla plugin easier on different distributions. Removed fixed include paths from mozilla/Makefile.am. XPIDL_INCL is automatically determined from ${MOZILLA_CONFIG}.
Configure and compile with XPIDL=<path_to_xpidl> application of your mozilla version, eg for mozilla-1.7.6 use: XPIDL=/usr/lib/mozilla-1.7.6/xpidl ./configure <rest of line> && make
2005-04-16 14:10:00 +00:00
Andre Pang
4ed026603a * mozilla/vlcshell.cpp: handle Mozilla plugin output window resizing in X11 (patch thanks to Conrad Parker, conrad AT metadecks DOT org), and annotate #endifs with the #ifdef that it closes 2005-03-11 13:38:38 +00:00
Derk-Jan Hartman
0815f48408 * TEST: removing #include <jis.h> from the mozilla plugin to see if we really require Java support.
if this breaks the linux or win32 mozilla plugin then it should be restored.
2005-03-08 23:25:11 +00:00
Andre Pang
e8e8633f71 * mozilla/vlcshell.cpp: Fix compilation on Mac OS X 2005-01-22 17:50:11 +00:00
Andre Pang
d355b458a0 * mozilla/Makefile.am: Fix build of Mozilla plugin on Mac OS X when using a separate build directory 2005-01-22 17:48:45 +00:00
Andre Pang
efa014c4a1 * Typo 2004-12-28 14:12:14 +00:00
Gildas Bazin
e5ba909ea8 * mozilla/vlcshell.cpp: added a mute start option. 2004-12-02 16:54:47 +00:00
Andre Pang
c25791879f Make Mozilla plugin scriptable (e.g. so that the Javascript 'onclick'
attributes in chapter 7 of the VLC user guide actually work ;).
2004-12-02 16:07:24 +00:00
Gildas Bazin
d9aa5ddb7a * mozilla/vlcshell.cpp: nasty hack on win32 to avoid a deadlock on plugin destruction. 2004-11-29 15:38:01 +00:00
Clément Stenac
8750bd1e46 * Add hooks for getting/setting variables (not working yet)
* Really change VLC_Get to VLC_VariableGet
2004-09-28 13:55:00 +00:00
Sam Hocevar
10840a4a01 * mozilla/vlcpeer.cpp: proper float->int cast. 2004-07-30 21:00:08 +00:00
Clément Stenac
053a3a7c87 * Added new functions to the Mozilla plugin
- set_volume
   	- get_volume
	- mute
	- clear_playlist
	- add_item
	- next
	- previous
	- isplaying
	- ge_length
	- get_position
	- get_time
	- seek

* Fixed VLC_VolumeSet and a description
2004-06-12 00:19:59 +00:00
Derk-Jan Hartman
347e1ecf94 * WARNING: Libvlc API change
- VLC_Set VLC_Get were changed to VLC_VariableGet VLC_VariableSet
 - VLC_ClearPlaylist was changed to VLC_PlaylistClear
 - Added a lot of new calls: 
   VLC_PositionGet, VLC_PositionSet, VLC_TimeGet, VLC_TimeSet,
   VLC_LengthGet, VLC_SpeedFaster, VLC_SpeedSlower, VLC_PlaylistIndex,
   VLC_PlaylistNumberOfItems, VLC_PlaylistNext, VLC_PlaylistPrev, 
   VLC_VolumeGet, VLC_VolumeSet, VLC_VolumeMute.
 - everything doxygenized.
 - There are NO mozilla functions of these additions yet. (someone else please?)
2004-06-06 13:02:26 +00:00
Derk-Jan Hartman
be973dfb40 NOTE: libvlc API changes
* renamed VLC_Stop to VLC_CleanUp since this name is closer to what it actually does.
* added a new VLC_Stop that just does playlist_Stop analogous to VLC_Play and VLC_Pause.
* reordered the functions in libvlc. everything was mixed up.
* added doxygen info to all the functions
* fixed several functions to use the correct underlying API calls
* corrected the copyright info


This is in preparation of the new libvlc calls for mozilla plugin
temp. moved the playlist_command_t typedef to vlc_common.h awaiting implementation of playlist_Control()
2004-06-05 16:09:00 +00:00
Gildas Bazin
3a8f5790c7 * mozilla/vlcshell.cpp: added fullscreen=yes/no option
* modules/gui/wxwindows/*: fixed auto-generated menus on win32.
2004-04-08 12:57:50 +00:00
Sam Hocevar
45adedc913 * Added "Id" svn:keywords property to all files containing "$Id:".
* Removed .cvsignore files and added proper svn:ignore properties.
2004-03-05 17:34:23 +00:00
Sam Hocevar
4e84ec7af9 * mozilla/vlcplugin.h:
+ Added the 'video/x-ms-asf' MIME type to the plugin (Closes Debian
      bug #232690).

   This commit is also a blatant test of the SVN->CVS mirroring scripts. If
 it does not work, we're screwed :-)
2004-03-05 16:07:35 +00:00
Gildas Bazin
c876674243 * mozilla/vlcshell.cpp: don't translate debug messages.
* modules/misc/logger/logger.c: compilation fix.
2004-01-25 17:52:17 +00:00
Anil Daoud
59bd8e1485 * string review. 2004-01-25 16:17:04 +00:00
Gildas Bazin
fc1221c11b * mozilla/Makefile.am: don't forget mozilla/npvlc_rc.rc in make dist. 2003-11-27 00:57:12 +00:00
Gildas Bazin
f5d3806626 * mozilla/vlcshell.cpp, modules/video_output/directx/*: round of fixes for the win32 mozilla plugin. 2003-11-20 17:48:44 +00:00
Gildas Bazin
dc29951c7f * configure.ac: check for mozilla-config.h on win32 as well.
* mozilla/support/npwin.cpp: some mozilla sdk don't include mozilla-config.h explicitly so do it ourselves.
2003-10-26 16:12:35 +00:00
Sam Hocevar
3fa2bee809 * configure.ac:
+ Detect <mozilla-config.h> on newer Mozilla versions.
  * mozilla/vlcpeer.cpp:
    + If neither NP_UNIX, NP_MACOSX nor NP_WIN are defined, default to NP_UNIX.
    + Use <mozilla-config.h> whenever possible.
2003-10-23 17:04:40 +00:00
Gildas Bazin
de1be1c13f * Makefile.am, bootstrap, mozilla/Makefile.am: don't try to build pic _and_ non-pic code on win32 as there's no need for pic code on this platform. This should almost reduce the compilation time by a factor of 2 when the mozilla plugin is activated in the build process. 2003-10-20 10:37:56 +00:00
Gildas Bazin
28ea8cc25d * modules/control/http.c: small bug fix.
* mozilla/vlcshell.cpp: win32 fix.
2003-10-15 07:34:25 +00:00
Gildas Bazin
f056f1fca6 * configure.ac, mozilla/vlcshell.cpp, mozilla/support/npwin.cpp: mozilla plugin for win32 is finally working (well there's still work left).
* src/misc/modules.c: small clean-up and fixed --plugin-path on win32.
2003-09-23 16:07:49 +00:00
Gildas Bazin
7d0c93158d * include/vlc_common.h: ssize_t is now typedefed in new mingw headers.
* modules/access/dshow/dshow.cpp: compilation fix related to ssize_t.
* share/vlc_win32_rc.rc: stringify version number.
* mozilla/*: compilation fix and cosmetic changes to the .rc.
2003-09-21 10:23:59 +00:00
Gildas Bazin
0fc16f660e * mozilla/vlcshell.cpp: on win32, try to find the location of the vlc plugins from the registry key. 2003-09-20 22:52:27 +00:00
Gildas Bazin
cd35bf7cc1 * configure.ac, mozilla/Makefile.am: more win32 mozilla plugin build fixes. 2003-09-20 15:52:19 +00:00
Gildas Bazin
973cf0496f * configure.ac, mozilla/*: the win32 mozilla plugin compiles again (most likely won't yet work).
Added a --with-mozilla-sdk-path option (win32 only) to ./configure so you can pass the path of your mozilla sdk tree.
 You also need to set the XPIDL env var to the the path of the xpidl mozilla compiler when ./configuring.
2003-09-20 13:52:23 +00:00
Simon Latapie
68cdda1e88 * oups (forgot to erase a test line) 2003-08-27 08:44:28 +00:00
Simon Latapie
97f2fb96f1 * Now the MacOS mozilla plugin is an independant bundle ( searchs no more
* in /usr/local/lib/vlc for modules )
2003-08-27 07:21:07 +00:00
Simon Latapie
00a3f0e4d8 * put the beautiful "no picture" black screen. 2003-08-25 14:51:49 +00:00