- 09 Aug, 2011 7 commits
-
-
Felix Paul Kühne authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Felix Paul Kühne authored
-
Rafaël Carré authored
split out some functions from Open() move static functions sout_stream_id_t -> define struct as empty and use the pointer to store sout_input_t functional change: do not force asfh mux if user specified another one but only warn him (like for upd/ts)
-
Rafaël Carré authored
makes data smaller: no need to store pointers to each item of the array char *x[] = { "a", "b", "c" }; memory looks like => "a" "b" "c" (&x) &a &b &c char x[][2] = { "a", "b", "c" }; memory looks like => (&x) "a" "b" "c"
-
Rafaël Carré authored
-
- 08 Aug, 2011 33 commits
-
-
Felix Paul Kühne authored
macosx: move VLCFSPanel from VLCControls to VLCMainWindow since its the only class which should know about it
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Felix Paul Kühne authored
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Jean-Baptiste Kempf authored
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
Jean-Baptiste Kempf authored
Close #5167
-
Pierre Ynard authored
-
Rémi Denis-Courmont authored
Some X servers cannot borrow VLC user privileges to attach to its shared memory segments. This fallback should fix MIT-SHM with those X servers. However other users will be able to snoop on the decoded video frames.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
The SDL audio output is gone. The SDL video output is not very useful and it won't quite work with most SDL video plugins disabled. SDL is mainly a dependency for SDL_image.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
As things stand, we have a format that is neither S/PDIF nor linear, so change the macros to remove the confusion.
-
Rémi Denis-Courmont authored
This plugin modifies the output format. It caused a busy loop and broke libmad on fixed-point architectures (fixes #5151).
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
F. Yhuel authored
The new Peek() function now allocates a block (p_sys->peeked) if the required size (i_peek) is greater than the size of the playback segment, and then do a copy of one (or several) segment's data block(s) in it. In the end, p_sys->peeked might be the concatenation of several segment's data blocks, but usually it will be NULL. Signed-off-by: Jean-Paul Saman <jean-paul.saman@m2x.nl>
-