Commit Graph

27 Commits

Author SHA1 Message Date
Rémi Denis-Courmont c959f01d69 Remove bogus executable permissions 2005-02-15 13:55:08 +00:00
Gildas Bazin 2b2441ca8b 2005-01-07 00:19:43 +00:00
Gildas Bazin a6cfcb2fcb * evc/*: added an ARMV4 target. 2005-01-05 22:23:13 +00:00
Gildas Bazin 84d44cbdc4 * toolbox, src/vlc.c: use src/vlc.c in the WinCE project files. 2004-11-12 10:38:27 +00:00
Gildas Bazin 63f0fdcf6f * evc/*: fixes and updates. 2004-10-08 10:49:05 +00:00
Gildas Bazin 764aab71ff * src/input/stream.c, modules/demux/avi/avi.c: work around evc++ compiler bug.
* evc/libvlc.vcp.in: small fix.
2004-10-06 10:50:35 +00:00
Gildas Bazin b0c0164100 * evc/vlc.vcp.in: fixes. 2004-10-04 15:43:10 +00:00
Gildas Bazin 06ea0c7872 * evc/config.h.in: cleanup. 2004-10-04 15:21:34 +00:00
Gildas Bazin d37438b1fa * evc/errno.h: errno.h replacement for WinCE. 2004-10-04 12:19:34 +00:00
Gildas Bazin bb1ef14f0a * evc/*: some updates to the evc project files. 2004-10-01 16:04:20 +00:00
Gildas Bazin 5cfa148096 * evc/vlc.vcw: removed old plugins. 2004-10-01 13:43:05 +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
Sam Hocevar fd8d9e955f * Removed legacy mentions of "VideoLAN C*****" in favour of "VLC media
player". A couple are remaining, but I don't want to break the string
    freeze yet.
2004-04-27 09:33:58 +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
Derk-Jan Hartman e525bf1328 * extras/contrib/src/ dvdnav packages
* REST: stringreview round 1
2004-01-24 21:06:52 +00:00
Sam Hocevar c3cbe1767e * ./evc/config.h, ./msvc/config.h: proper generation of these files using
information from configure.ac.in. Thanks to Stephane van Hardeveld for
    spotting this.
2003-01-16 12:49:28 +00:00
Sam Hocevar 1187cda56b * ./src/misc/messages.c: we overwrite the WinCE logfile instead of appending
data to it.
  * ./evc/vlc.vcw: minor updates.
2002-11-25 12:08:58 +00:00
Sam Hocevar f6cf9ef8b8 * ./modules/video_output/wingdi.c: the GDI video output now properly sets
the bitmasks; we're not limited to 8bpp and 16/24 works.
  * ./modules/video_filter/*: the video filters now work under WinCE.
2002-11-23 02:40:30 +00:00
Sam Hocevar 1fdc92cbe0 * ./modules/video_output/wingdi.c: skeleton of a Windows GDI video output.
* ./modules/access/file.c: the file access plugin gets the real file size
    under WinCE.
  * ./modules/audio_filter/converter/u8tofixed32.c: added this conversion
    filter to play some WAV files without an FPU.
  * ./bootstrap: bootstrap --update-vc doesn't rely on the Makefile's presence.
2002-11-21 13:53:32 +00:00
Sam Hocevar 691e470422 * ./src/misc/messages.c: added ^Ms to the WinCE logfile.
* ./bootstrap: fixed a typo that prevented per-object target directories
    to work.
  * ./evc/*, ./msvc/*: removed project files; they're becoming a bit large
    (more than 1MB) and I don't want to spoil the CVS with them.
2002-11-20 19:07:27 +00:00
Sam Hocevar a6bb3a1fe8 * ./modules/audio_output/waveout.c: audio output now works under WinCE
using the waveout module.
  * ./bootstrap: we ignore comments when parsing makefiles.
  * ./modules/audio_filter/converter/fixed32tofloat32.c: changed this module
    so that it also does float32tofixed32.
  * ./modules/*: ported a few other modules to WinCE (most of the time it's
    just a #include <errno.h> that needs to be removed).
2002-11-20 16:43:33 +00:00
Sam Hocevar 22f2fa6176 * ./evc/plugins.vcp.in: fixed plugin entry points for WinCE.
* ./modules/*: fixed a bunch of modules so that they compile under WinCE,
    we now have access_file and the mpeg demux and video decoder working
    (http://zoy.org/~sam/vlc/pocketvlc2.png).
2002-11-20 13:37:36 +00:00
Sam Hocevar c3a40bca86 * ./include/vlc_common.h, ./src/extras/libc.c: exported our custom libc
functions to plugins.
  * ./bootstrap: enhanced the project file generation for plugins; we now
    parse makefiles to make this easier.
  * ./modules/**/Modules.am: reworked a few makefiles so that they are more
    easily parsed.
2002-11-20 08:58:24 +00:00
Sam Hocevar 4a8ce8ac45 * ./src/misc/modules.c: p_module->psz_filename is now filled with a real
8 bit string under WinCE.
  * ./extras/Win32_msvc: scrapped this directory.
  * ./bootstrap: we now parse plugin makefiles to guess what to put in
    the MSVC project files. Only the dummy plugin has been tested yet.
2002-11-19 17:38:07 +00:00
Sam Hocevar 455221a001 * ./src/misc/modules.c: support for Unicode filenames under WinCE; VLC now
successfully opens plugins.
  * ./modules/misc/dummy/*: hacked the dummy plugin so that it compiles for
    WinCE.
2002-11-18 18:05:13 +00:00
Sam Hocevar d1296b32da * ./bootstrap: bootstrap now requires the --config flag. With no arguments
it simply outputs a usage message.
  * ./src/*: fixed a bunch of (legitimate) warnings under VC++.
  * ./evc/*, ./msvc/*: split the workspaces into three projects (libvlc, vlc
    and plugins -- plugins doesn't build anything yet).
2002-11-13 20:51:05 +00:00
Sam Hocevar 5de3e045e3 * ./msvc/*, ./evc/*: moved eMbedded Visual Studio files to the toplevel evc/
directory because the two project files are starting to diverge.
  * ./evc/vlc.c: created a specific vlc.c file for Windows CE.
  * ./src/misc/messages.c: as WinCE doesn't have stdout or stderr, the message
    queue outputs to a logfile (until we have a proper interface).
2002-11-13 15:28:24 +00:00