- 21 Nov, 2007 1 commit
-
-
Christophe Massiot authored
transcode.
-
- 12 Jun, 2007 1 commit
-
-
Laurent Aimar authored
It use our standard resampler to do it and so we do not keep pitch yet (I am working on a soundtouch resampler). Please test any regression.
-
- 19 May, 2007 1 commit
-
-
Rémi Denis-Courmont authored
-
- 02 Mar, 2007 1 commit
-
-
Laurent Aimar authored
-
- 25 Feb, 2007 1 commit
-
-
Laurent Aimar authored
(Fixed lol-vlc.aac segfault, http://sam.zoy.org/zzuf/)
-
- 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.
-
- 08 Oct, 2006 1 commit
-
-
Gildas Bazin authored
-
- 05 Oct, 2006 1 commit
-
-
Gildas Bazin authored
-
- 15 Sep, 2006 1 commit
-
-
Clément Stenac authored
Also, make it clearer what is shared and instance-specific So, libvlc_t ==> libvlc_global_t vlc_t ==> libvlc_int_t (internal instance) p_object->p_libvlc ==> p_object->p_libvlc_globale p_object->p_vlc ==> p_object->p_libvlc VLC_OBJECT_VLC ==> VLC_OBJECT_LIBVLC And by the way, there is some cleanup required :) (ie, some things are created in the global object instead of the instance-specific one)
-
- 12 Jan, 2006 1 commit
-
-
Antoine Cellerier authored
-
- 09 Jul, 2005 1 commit
-
-
Rémi Denis-Courmont authored
-
- 08 Jul, 2005 1 commit
-
-
Rémi Denis-Courmont authored
(da big courmischage)
-
- 21 Feb, 2005 1 commit
-
-
Laurent Aimar authored
- BLOCK_FLAG_CORRUPTED : signal corrupted data (do not use anymore BLOCK_FLAG_DISCONTINUITY in that case) - BLOCK_FLAG_PREROLL : mark this block to be decoded (no matter what). * ffmpeg, libmpeg2: support BLOCK_FLAG_PREROLL (ie disable frame dropping). * input: added ES_OUT_SET_NEXT_DISPLAY_TIME to ease the work for preroll (untested). * mp4: added support for CTTS table (pts, needed for h264+bframe). * decoders: for now handle discontinuity and corrupted block the same way.
-
- 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
-
- 23 Sep, 2004 1 commit
-
-
Derk-Jan Hartman authored
-
- 07 Sep, 2004 1 commit
-
-
Gildas Bazin authored
-
- 07 Mar, 2004 1 commit
-
-
Gildas Bazin authored
* include/vlc_es.h: added b_packetized field to es_format_t to tell a decoder if the input elementary stream will be fed in complete frames. * include/vlc_codec.h: added a b_need_packetized field to decoder_t that is used by a decoder to tell if it wants to be fed complete frames. * modules/demux/ts.c, modules/demux/ps.h, src/input/input_programs.c: b_packetized = VLC_FALSE. * modules/codec/ffmpeg/ffmpeg.c, modules/codec/faad.c: b_need_packetized = VLC_TRUE; * src/input/input_dec.c: if (b_need_packetized & !b_packetized) then kick off a packetizer that we'll use to feed the decoder. * src/input/es_out.c: removed useless stuff.
-
- 25 Feb, 2004 1 commit
-
-
Laurent Aimar authored
field and a few BLOCK_FLAG_*.
-
- 19 Feb, 2004 4 commits
-
-
Jean-Paul Saman authored
-
Gildas Bazin authored
-
Jean-Paul Saman authored
Tell FAAD2 to produce FAAD_FMT_16BIT (16bits PCM values) and VLC so that it doesn't need to do a conversion filter for it.
-
Jean-Paul Saman authored
-
- 25 Jan, 2004 1 commit
-
-
Benjamin Pracht authored
still some printfs in dvbsub.c. Would need to spend some time reading the code to remove them.
-
- 12 Dec, 2003 1 commit
-
-
Gildas Bazin authored
* modules/codec/faad.c: proper channels re-ordering for multi-channels audio.
-
- 03 Dec, 2003 1 commit
-
-
Laurent Aimar authored
-
- 27 Nov, 2003 1 commit
-
-
Laurent Aimar authored
-
- 22 Nov, 2003 1 commit
-
-
Laurent Aimar authored
as vlc/vlc.h include them).
-
- 16 Nov, 2003 1 commit
-
-
Gildas Bazin authored
* ALL: final improvements to the decoders/packetizers api. (There are still a few decoders/packetizers left to be converted but this shouldn't take too long). * ALL: small improvements to the encoders api.
-
- 05 Nov, 2003 1 commit
-
-
Laurent Aimar authored
-
- 04 Nov, 2003 1 commit
-
-
Laurent Aimar authored
* hotkeys: never _never_ use demux_Control outside of src/input/ (it's completely broken, there is a lot more things to do), all interfaces have to use var_Get/Set (time(-offset), position(-offset), state, rate(-slower|-faster)... ). Btw, input_SetStatus, input_Seek, input_Tell, input_ChangeArea, input_ToggleES, will be quickly obsolete and removed(at least unavailable for intf), so we should convert remaining interfaces (ie all except wx, osx, rc, http, hotkeys). * avi: implemented DEMUX_SET_TIME (not yet used).
-
- 03 Nov, 2003 1 commit
-
-
Laurent Aimar authored
I have not kept the compatibility with older faad version (but check is still be done in configure.ac). (I didn't like it as old version are really buggy).
-