- 03 Apr, 2004 1 commit
-
-
Laurent Aimar authored
(text subs with mpg aren't working anymore unless using ps2)
-
- 12 Mar, 2004 1 commit
-
-
Gildas Bazin authored
* modules/demux/mp4/mp4.c: work-around buggy muxers which don't set properly the display size in the mov/mp4 container.
-
- 11 Mar, 2004 1 commit
-
-
Gildas Bazin authored
+ added --meta-title/author/artist/genre/copyright/description/date/url config options. This allows the user to specify/override metadata information for an input. * include/vlc_meta.h: + vlc_meta_Merge( dest, src ) helper function. * modules/demux/mp4/*: + Fixed a couple of mem-leaks. + Support for "description" metadata.
-
- 10 Mar, 2004 1 commit
-
-
Laurent Aimar authored
-
- 07 Feb, 2004 1 commit
-
-
Laurent Aimar authored
-
- 30 Jan, 2004 1 commit
-
-
Laurent Aimar authored
* dvdnav: select the right SPU track only while creating the ES when we are not in the menu. (this way user selection won't be lost).
-
- 25 Jan, 2004 1 commit
-
-
Derk-Jan Hartman authored
-
- 23 Jan, 2004 1 commit
-
-
Gildas Bazin authored
* modules/demux/mp4/mp4.c: don't segfault on reference files.
-
- 18 Jan, 2004 3 commits
-
-
Laurent Aimar authored
Please test, it may have heavily broken playback of some files !!!
-
Laurent Aimar authored
-
Laurent Aimar authored
-
- 13 Jan, 2004 2 commits
-
-
Laurent Aimar authored
-
Laurent Aimar authored
-
- 09 Jan, 2004 1 commit
-
-
Jon Lech Johansen authored
* ./modules/demux/mp4/mp4.c: if sample has not been decrypted, do not pass it on to decoder.
-
- 06 Jan, 2004 1 commit
-
-
Jon Lech Johansen authored
-
- 05 Jan, 2004 2 commits
-
-
Clément Stenac authored
What may be broken (untested): ------------------------------ - Theora and Speex decoders - some interfaces - VCDX and CDDAX access The problems shouldn't hopefully excess compilation glitches. (removal of AddExt, of psz_author, and prototype of Add) Additionnaly, interfaces that do not support item-change will have update problems. * Updated modules list
-
Jon Lech Johansen authored
-
- 20 Dec, 2003 1 commit
-
-
Gildas Bazin authored
* modules/demux/mp4/mp4.c: fixed problem with buggy files that don't set the audio sample rate properly.
-
- 02 Dec, 2003 1 commit
-
-
Gildas Bazin authored
* modules/codec/ffmpeg/video.c: respect aspect ratio given by demux if any.
-
- 29 Nov, 2003 1 commit
-
-
Laurent Aimar authored
-
- 27 Nov, 2003 1 commit
-
-
Laurent Aimar authored
-
- 24 Nov, 2003 1 commit
-
-
Laurent Aimar authored
-
- 23 Nov, 2003 1 commit
-
-
Gildas Bazin authored
* modules/demux/*: some containers don't carry any PTS information, just a DTS. In that case, make sure the PTS forwarded to the decoder is set to 0. * modules/codec/ffmpeg/video.c: use PTS if available, if not find out the PTS from the DTS and the p_context->has_b_frames and p_pic->reference flags.
-
- 07 Oct, 2003 1 commit
-
-
Gildas Bazin authored
* modules/demux/mp4/*: Added support for the "wave" tag used in mov files with aac.
-
- 19 Sep, 2003 1 commit
-
-
Laurent Aimar authored
* mp4: send complete atom for amr to the decoder.
-
- 13 Sep, 2003 1 commit
-
-
Laurent Aimar authored
the playlist. but use FIND_PARENT. vlc_object_find with FIND_ANYWHERE use p_obj->p_vlc as a starting point and that doesn't work as playlist is detach from vlc before vout is destroyed by the decoders (when shutting down) Perhaps vlc_object_find should be fixing to find the root object, but I'm not sure. * src/input/* : move subtitle handling from avi to input. Now subs should works with all file types _BUT_ won't be in synch if the demuxer doesn't implement a _precise_ DEMUX_GET_TIME. So only .avi, .mp4 will be ok. Others could works if perfectly cbr. Now Subtitle track is only selected when specified by sub-file option.(auto-dectected file is always added but not selected by default) Btw, the code could support multiple subs files, but I don't know how to pass multiple filenames, any ideas ? * demux/mpeg/mpga.c : play with es_out_t. I'm investigating for now so don't use that elsewhere.
-
- 12 Sep, 2003 1 commit
-
-
Laurent Aimar authored
* modules/demux/* : use the stream_t from input_thread_t. * include/ninput.h : begin to add new way to register es. (unused for now). (in the long term I want to split input_thread_t and intoduce demux_t and access_t and perhaps something like access_demux_t)
-
- 08 Sep, 2003 1 commit
-
-
Laurent Aimar authored
-
- 07 Sep, 2003 1 commit
-
-
Laurent Aimar authored
is a generic handler) * avi, mp4 : begin to implement a specific pf_demux_control.
-
- 23 Jul, 2003 1 commit
-
-
Gildas Bazin authored
* ALL: changes to the playlist_Add() and VLC_AddTarget() proto to include a list of options associated with the input. * src/input/input.c: parses the input options list before spawning the input and create object variables for these options. Options are of the form "[no[-]]foo[=bar]" where foo is the option name and bar is its value. * src/input/input.c, src/input/input_dec.c: use the object var api to get the value of the "sout", "sout-video" and "sout-audio" options. * src/libvlc.c: extended the command line parser to parse input options. Input options must always follow the input they apply to and begin with a ':'. All these changes allow you to specify input specific options. eg: ./vlc --no-sout-audio yourvideo.mpeg :sout=udp/http::8080 :sout-audio yourvideo2.mpeg Here the ":sout" option will only apply to yourvideo.mpeg. "--no-sout-audio" will be a global option so will apply to yourvideo2.mpeg but the global behaviour is overriden by ":sout-audio" for yourvideo.mpeg. TODO: - the interfaces need to be modified to benefit from the new playlist_Add() api. - only "sout", "sout-video", "sout-audio" implemented for now. To make it work with other options, we need to get rid of all the config_GetFoo() and replace them with var_Create()/var_Change()/var_Get().
-
- 24 May, 2003 1 commit
-
-
Derk-Jan Hartman authored
* modules/demux/mp4/mp4.c: added SVQ1 for the quicktime decoder. * modules/gui/macosx/macosx.m: typo * modules/gui/macosx/prefs.m: fix of the module selectors. * po/nl.po: i've taken a head start on the translations. * src/libvlc.h: removed unused string RT_PRIORITY_TEXT
-
- 22 May, 2003 1 commit
-
-
Gildas Bazin authored
* src/libvlc.h: fixed spelling mistake. * modules/gui/wxwindows/preferences.cpp: allow negative numbers in spinctrls. * modules/demux/asf,avi,mp4: use p_input->stream.control.b_mute.
-
- 09 May, 2003 1 commit
-
-
Laurent Aimar authored
have found.
-
- 07 May, 2003 1 commit
-
-
Laurent Aimar authored
at free box content to see if it could be moov box, I hope there won't be any misdetection. (Even when there is a spec, nobody follows it :((
-
- 06 May, 2003 1 commit
-
-
Laurent Aimar authored
-
- 05 May, 2003 1 commit
-
-
Gildas Bazin authored
* ALL: changed the prototype of input_AddES() to include enough information so we can build an "video-es", "audio-es" and "spu-es" object variable. These variables can be used by the interfaces to navigate between the elementary streams. * modules/gui/wxwindows/menus.cpp: use the "foo-es" object variables.
-
- 30 Apr, 2003 1 commit
-
-
Laurent Aimar authored
big audio chunk. (Avoid 100000 samples at once :(
-
- 25 Apr, 2003 1 commit
-
-
Laurent Aimar authored
* mp4: don't return a failed value when recognize a ref file, but use a dummy Demux function that return EOF.
-
- 24 Apr, 2003 1 commit
-
-
Laurent Aimar authored
-
- 22 Apr, 2003 1 commit
-
-
Laurent Aimar authored
-