- 21 May, 2008 1 commit
-
-
Rémi Denis-Courmont authored
-
- 08 May, 2008 1 commit
-
-
Rémi Denis-Courmont authored
-
- 01 May, 2008 1 commit
-
-
Rémi Denis-Courmont authored
-
- 14 Apr, 2008 2 commits
-
-
Pierre d'Herbemont authored
-
Pierre d'Herbemont authored
This improves readability a lot and prevent us from reinventing the wheel.
-
- 23 Jan, 2008 1 commit
-
-
Rémi Denis-Courmont authored
Missing some cases that I could not test. Also ffmpeg/chroma.c is locked, so I can but leave it broken. Fix is for the remaining modules is obvious and the issue is easy to detect.
-
- 16 Jan, 2008 3 commits
-
-
Damien Fouilleul authored
vlc security: As i've seen very little improvement on that front, i've decided to check in my take on handling the problem of managing harmful options. I'm pretty sure this is going to be very controversial, but I think my approach is quite simple and yet very effective Anyway, my approach makes the following assumptions: - most vlc options are considered safe, only a handful are particularily unsafe and need be declared as such in their definition (they mostly deal with writing to an output file or URL) - unsafe options are only considered potentially harmful when used as an input option, ie. the ':option' format. Configuration options are always considered safe 'i.e --option' - unsafe options are associated with a global security policy, which dictates how these are handled. At the moment, The policy can be either block, allow or prompt, and is set using the '--security-policy' option (which itself is considered unsafe ;) the policy can be set by the user at the command line or in the preferences, it curently defaults to prompt, which is the desirable state for deskop use. However, it can be overriden depending on context, for example, the activex and mozilla will force the security-policy to block regardless of preference settins. the code is a bit rough at the moment, but i will optimize/clean it up if the dev community this approach is worth keeping. try the following example, and you'll see quickly what i mean: ./vlc -vvv <a mrl> :sout=#transcode{vcodec=mp1v,vb=1024,acodec=mpga,ab=192}:standard{mux=ts,dst=vlc-output.ts,access=file}" Enjoy, Damien
-
Rémi Denis-Courmont authored
-
Rafaël Carré authored
-
- 30 Sep, 2007 1 commit
-
-
Laurent Aimar authored
Made demux2_IsPathExtension case insensitive. Used demux2_IsPathExtension/p_demux->b_force when appropriate Fixed a regression in flac demuxer (segfault when reading meta data) Added a VLC_UNUSED(x) macro to avoid seeing ugly (void)x around the code. Improved a bit a few vlc_common.h macro (do {} while(0))
-
- 03 Sep, 2007 1 commit
-
-
Dennis van Amerongen authored
-
- 20 Aug, 2007 2 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- 26 Nov, 2006 1 commit
-
-
Clément Stenac authored
* Headers in include must contain the structures and prototypes needed by the plugins and should be named vlc_*. * Headers in include/vlc must contain the structures and prototypes needed by external libvlc clients * Moved and renamed some things in headers. - Removed vlc_cpu.h, vlc_error.h (merged in vlc_common) - Removed snapshot.h (merged in vlc_vout.h) - Removed vlc_spu.h (merged in vlc_osd.h) - Removed intf_eject.h and vlc_interaction.h (merged in vlc_interface) - Moved all internal headers to src - Merged vlc_video.h and video_output.h and move private things to src - Removed vlc/intf.h, vlc/aout.h, vlc/vout.h, vlc/decoder.h and vlc/input.h (meta headers for use in modules, and often implying too large dependencies) * Removed some useless dependencies * Unexported a bunch of functions and structures used only in src/ (--> Still some work here) * Finally made input_thread_t and input_source_t (mostly) private. Added input_GetItem to fetch the input_item of an input_thread * Cleaned up deprecated entries in vlc_symbols.h and bumped up symbol prefix This commit has a 99% probability of breaking the build, 0.1% of killing your cat and 0% of getting you hot chicks.
-
- 12 Nov, 2006 1 commit
-
-
Rémi Denis-Courmont authored
-
- 11 Mar, 2006 1 commit
-
-
Clément Stenac authored
-
- 18 Feb, 2006 1 commit
-
-
Rémi Denis-Courmont authored
-
- 13 Feb, 2006 1 commit
-
-
Rémi Denis-Courmont authored
skins2 and galaktos remain as I'm not sure how they (don't?) handle encodings. http interface URL were purposedly not made to use Unicode. I'm open to suggestions on that one.
-
- 12 Jan, 2006 1 commit
-
-
Antoine Cellerier authored
-
- 18 Aug, 2005 1 commit
-
-
Christophe Massiot authored
-
- 09 Jul, 2005 1 commit
-
-
Rémi Denis-Courmont authored
-
- 08 Jul, 2005 1 commit
-
-
Rémi Denis-Courmont authored
(da big courmischage)
-
- 11 Mar, 2005 1 commit
-
-
Clément Stenac authored
-
- 11 Dec, 2004 1 commit
-
-
Clément Stenac authored
* Each module can declare a "human-readable short name" with set_name * Modules are sorted by category (set_category, set_subcategory). Modules configs can be separated by set_section() * Separated audio-filter and audio-visual * Separated extraintf and control * New command and widget : add_module_list() for comma-separated modules * Vfilters now use "," as separator
-
- 03 Sep, 2004 1 commit
-
-
Christophe Massiot authored
-
- 28 Jun, 2004 1 commit
-
-
Laurent Aimar authored
-
- 25 Jan, 2004 1 commit
-
-
Derk-Jan Hartman authored
-
- 05 Nov, 2003 1 commit
-
-
Gildas Bazin authored
* src/input/input.c: honor the --demux config option (will be overriden if demux is specified in the MRL). I'm not exactly sure this is wise as some users will surely fuck-up their preferences and force a specific demux... but this also allows me to specifiy the demuxdump demux with an input option (very handy to include the demuxdump option in the streamout gui dialogs). * src/misc/modules.c: changed module_Need() to use var_Get() instead of config_Get. * modules/gui/wxwindows/*: moved the demuxdump option from the open dialog to the streamout dialog.
-
- 07 Sep, 2003 1 commit
-
-
Laurent Aimar authored
is a generic handler) * avi, mp4 : begin to implement a specific pf_demux_control.
-
- 15 May, 2003 1 commit
-
-
Christophe Massiot authored
* ALL: Capitalize all preferences text strings
-
- 30 Mar, 2003 2 commits
-
-
Gildas Bazin authored
* modules/*: sanitization of the modules description strings.
-
Gildas Bazin authored
* include/configuration.h: added the add_directory() config macro. * modules/gui/wxwindows/preferences.cpp: support for add_string_from_list(). * ALL: changed some add_string() config options to add_file().
-
- 29 Mar, 2003 1 commit
-
-
Gildas Bazin authored
* modules/audio_filter/channel_mixer/headphone.c, src/libvlc.h: moved the headphone-dim config option to the headphone plugin. * modules/demux/demuxdump.c: the demuxdump-file config optin now has a default value. * src/libvlc.c: fixed the extraintf config option not to spawn an interface plugin when an invalid name has been given.
-
- 20 Feb, 2003 1 commit
-
-
Sigmund Augdal Helberg authored
indicate wether it is an "advanced" option or not. The goal with this is to hide the user from all the strange options that very seldom needs to be changed. added an extra argument to all the add_* macros to indicate wether the item is advanced or not. * src/libvlc.h: added an "show advanced options" config option default disabled * src/libvlc.c: the advanced options are not listed by vlc --help and friends unless --advanced is used * modules/gtk/preferences.c: the gtk/gnome preferences dialog don't show advanced options unless advanced is set all: set the advanced flag to VLC_FALSE or VLC_TRUE for all options, by using some common sense. Please check and correct note: All interfaces should still work like they used to, see the change in modules/gtk/preferences.c to find out how to "hide" options. second note: I think I've changed all the modules, but I could not test everyone for compilation, expect some broken modules (the fix is to add ", VLC_TRUE" as last argument to the add_* I forgot)
-
- 02 Feb, 2003 1 commit
-
-
Eric Petit authored
(useful for operating systems which do not have '/dev/stdout' nor mkfifo)
-
- 25 Jan, 2003 1 commit
-
-
Laurent Aimar authored
-
- 18 Dec, 2002 1 commit
-
-
Sam Hocevar authored
-
- 13 Nov, 2002 1 commit
-
-
Laurent Aimar authored
modules/demux/demuxdump.c : a little demux that dump raw stream. (should work with all access...)
-
- 04 Aug, 2002 1 commit
-
-
Sam Hocevar authored
waveout, directx, qnx, beos, win32, macosx, and the AltiVec modules. * ALL: removed mention of AC3 in favour of A52. * ./configure.in, ./Makefile*: modules can now be built deeper than 1 directory. As a consequence, the build is even slower (but I'm fixing this) and make clean doesn't work anymore.
-
- 31 Jul, 2002 1 commit
-
-
Sam Hocevar authored
about 2000 lines of code. I could not test everything on every architecture, so please report any module breakage (especially on BeOS, OSX and QNX).
-