- 17 Mar, 2008 2 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- 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.
-
- 30 Sep, 2007 1 commit
-
-
Laurent Aimar authored
input slave) Untested. media_instance.c no longer depends on input_internal.h Clean up a bit es_out pause handling. Fixed DEMUX_GET_FPS description (double not float)
-
- 19 Aug, 2007 1 commit
-
-
Rémi Denis-Courmont authored
By the way, using asprintf(&ptr)/free(ptr) to determine the length of a string is really lame, when you can do the same with snprintf(NULL, 0);
-
- 18 Aug, 2007 1 commit
-
-
Rafaël Carré authored
Fix [21193]
-
- 29 Jun, 2007 1 commit
-
-
Laurent Aimar authored
-
- 31 May, 2007 1 commit
-
-
Laurent Aimar authored
Use decoder_GetInputAttachment to get attachment from a decoder module. You need to release the memory with vlc_input_attachment_Delete. Untested... modules/playlist/* cosmetic.
-
- 23 Mar, 2007 1 commit
-
-
Laurent Aimar authored
Fixed VLC_META_NOW_PLAYING update.
-
- 26 Nov, 2006 1 commit
-
-
zorglub 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.
-
- 24 Sep, 2006 2 commits
- 15 Sep, 2006 1 commit
-
-
zorglub authored
-
- 12 Sep, 2006 1 commit
-
-
Rémi Denis-Courmont authored
-
- 28 Mar, 2006 1 commit
-
-
zorglub authored
-
- 12 Jan, 2006 1 commit
-
-
dionoea authored
-
- 02 Dec, 2005 1 commit
-
-
zorglub authored
-
- 31 Aug, 2005 1 commit
-
-
gbazin authored
* modules/stream_out/transcode.c, src/input/decoder.c, src/input/control.c: fixed a bunch of memory leaks. Patch courtesy of Wallace Wadge (wwadge at gmail) + modifications by me.
-
- 09 Jul, 2005 1 commit
-
-
Rémi Denis-Courmont authored
-
- 08 Jul, 2005 1 commit
-
-
Rémi Denis-Courmont authored
(da big courmischage)
-
- 26 Apr, 2005 1 commit
-
-
Laurent Aimar authored
* input: allow chaining of access_filter (like filter1:filter2 ...) * es_out: support VLC_META_NOW_PLAYING for multi-program stream.
-
- 07 Mar, 2005 1 commit
-
-
Steve Lhomme authored
-
- 05 Feb, 2005 1 commit
-
-
sigmunau authored
-
- 16 Jan, 2005 1 commit
-
-
zorglub authored
Remove playlist info accessors (as they now belong to input_item) and use vlc_input_item_AddInfo and vlc_input_item_GetInfo instead
-
- 22 Nov, 2004 1 commit
-
-
Laurent Aimar authored
-
- 20 Aug, 2004 1 commit
-
-
Sam Hocevar authored
-
- 05 Aug, 2004 1 commit
-
-
gbazin authored
* modules/gui/wxwindows/bookmarks.cpp: bookmarks support is back.
-
- 28 Jun, 2004 1 commit
-
-
gbazin authored
-
- 23 Jun, 2004 1 commit
-
-
Laurent Aimar authored
(becarefull, it's just if you can seek or not, and not if you have to display the progress bar, for thet last you have to check if "position" value get != 0.0 ) - added "audio-delay" and "spu-delay" object variables to delay audio/spu to the video. They can be changed on the fly (untested). - renamed INPUT__GET/SET_SUBDELAY into INPUT_SET_SPU_DELAY and added INPUT_SET_AUDIO_DELAY (wrapper to "audio-delay" and "spu-delay") - readded INPUT_ADD/GET_INFO/INPUT_SET_NAME. Becarefull to not over-use them, a demuxer should export DEMUX_GET_META and not using them.
-
- 22 Jun, 2004 1 commit
-
-
Laurent Aimar authored
-
- 07 Jun, 2004 1 commit
-
-
Laurent Aimar authored
* demux, access: change the prototype of access2_New/demux2_New. * control: implemented all INPUT_GET/SET. * src/input/*.c: removed old functions, move some of them.
-
- 06 Jun, 2004 1 commit
-
-
zorglub authored
* Edit bookmarks if possible
-
- 30 Apr, 2004 1 commit
-
-
zorglub authored
-
- 23 Apr, 2004 1 commit
-
-
gbazin authored
* include/vlc_meta.h: vlc_meta_GetValue(). * modules/demux/m3u.c: increased MAX_LINE to 8192. * modules/video_output/directx/events.c: portability fix.
-
- 31 Mar, 2004 2 commits
-
-
gbazin authored
* src/input/control.c: INPUT_ADD/DEL_BOOKMARK also modifies the "bookmarks" input option so the bookmarks are kept even when the input is stopped.
-
gbazin authored
* src/input/input.c: + introduced input_item_t that is shared between the playlist/vlm and the input thread (contains input name, options, infos, etc...). + changed prototype of input_CreateThread() to input_thread_t *input_CreateThread( vlc_object_t *, input_item_t * ). * ALL: use input_item_t and INPUT_ADD_INFO when necessary.
-
- 29 Mar, 2004 2 commits
-
-
Laurent Aimar authored
input: fixed uninitialised variable (i_microsecondperframe for subs)
-
zorglub authored
* Allow to modify subtitle delay on the fly and implement hotkeys (h and j) * When framerate is available with subrip, use sub-fps to make corrections (sub-fps default value is now 0, if left to this value, 25fps will be assumed in microdvd mode and no correction will be applied in subrip) Main problem is that when seeking in the subtitles, you easily get several of them displayed. Maybe we could add a flag to subpicture_t, like SUBTITLE_PICTURE to say that only one of them must be displayed at a time, but that other subpictures (OSD, ...) can remain present on the screen at the same time.
-
- 26 Mar, 2004 1 commit
-
-
gbazin authored
-
- 23 Mar, 2004 1 commit
-
-
gbazin authored
+ new input_Control() function (doesn't do much for now). + started bookmarks support through input_Control(). + new --bookmarks={name=foo,bytes=foo,time=foo},{...} config option. * src/video_output/*: + started support for embeddable vouts (vout_RequestWindow()/vout_ReleaseWindow()) + new --video-x/y config options
-