- 26 Feb, 2013 8 commits
-
-
Ђорђе Васиљевић authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Alexander Lakhin authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Bruno Miguel Queiros authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Shambhu Kumar authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Ivar Smolin authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Mario Siegmann authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Adnan Memija authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Felix Paul Kühne authored
Info.plist: add support for dvdmedia packages, which are essentially Video_TS dumps for Apple's DVD Player.app (cherry picked from commit 6a4cd277610ed2e2186a582ad8a6522db1da3f0f)
-
- 21 Feb, 2013 1 commit
-
-
Frode Tennebø authored
Shoulc close #5952 Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> (cherry picked from commit 7f99f183c055dbb657a896adb568687b6264df44) Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
- 19 Feb, 2013 6 commits
-
-
Rémi Denis-Courmont authored
Luckily, signed and unsigned int are compatible types. (cherry picked from commit 5987f34d99b14b127e51d5bc68fc97e0bf71e7b3)
-
Rémi Denis-Courmont authored
(cherry picked from commit e712c11f55e881fd91774921e69a2736d8fdad0b)
-
David Fuhrmann authored
-
David Fuhrmann authored
close #8110
-
Felix Paul Kühne authored
auhal: use kAudioObjectPropertyName instead of kAudioDevicePropertyDeviceName to retrieve the (potentially localized) device name This is the endorsed API and behaves correctly with regard to string lengths (cherry picked from commit 14250ccc4fab3f18b0270465e2d3a4fe78c0ebfb) (cherry picked from commit dd4d8155806afb07d6095924030b8c78e85fca61) Conflicts: configure.ac modules/audio_output/auhal.c Signed-off-by: David Fuhrmann <david.fuhrmann@googlemail.com>
-
John Peterson authored
Fixing contrib 'make prebuilt' and 'make package' to use the repo version of change_prefix.sh instead of a version inside the contrib package. The script shouldn't be included in the contrib package because the intention has not been to have different versions of the file depending on platform. If necessary the script can take into account differences between platforms instead of coming in different versions. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> (cherry picked from commit e1bb86cdb67c974c526542f3b57c8de51be450f6) Signed-off-by: Rafaël Carré <funman@videolan.org>
-
- 12 Feb, 2013 7 commits
-
-
Denis Charmet authored
(cherry picked from commit 0fafbb87581a526dcdd7183cd49a472ada2bb8d7) Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Rafaël Carré authored
This reverts commit 8b49a93d.
-
Rafaël Carré authored
Fix #8124
-
Rafaël Carré authored
-
Ilkka Ollakka authored
(cherry picked from commit 45032ec3b271641aaa3d9613e7c579fabc3d475a) Conflicts: modules/codec/avcodec/audio.c
-
Rafaël Carré authored
-
Rafaël Carré authored
-
- 11 Feb, 2013 2 commits
-
-
Dominko Aždajić authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Jean-Baptiste Kempf authored
(cherry picked from commit 8cbd52ac8a500a96378a35f74be12c6d73b50d18) Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
- 10 Feb, 2013 4 commits
-
-
Rémi Denis-Courmont authored
Last bump was in 2.0.2, possibly omitted since then. (changed by commit 6be4754f)
-
Rémi Denis-Courmont authored
(changed by commit 2c27b625)
-
Rafaël Carré authored
-
Rafaël Carré authored
autogen.sh does not exist anymore (cherry picked from commit b3e62f036664bf4edc1d1edafd3b9df012c92ffa) Signed-off-by: Rafaël Carré <funman@videolan.org>
-
- 09 Feb, 2013 2 commits
-
-
Rémi Denis-Courmont authored
This avoids the infamous VLC playlist bug whereby the playlist stops if the current item is deleted. It turns out PulseAudio tends to "update" a source right after VLC opens it, and then VLC stopped playing almost as soon as it started. (cherry picked from commit 5678c1900b38babcbdf453fcbf3ee4f9a863e594)
-
Jean-Baptiste Kempf authored
-
- 08 Feb, 2013 1 commit
-
-
Ludovic Fauvet authored
Based on the gnutls_handshake manual the function must be called again until it returns 0 (or a fatal error). Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> (cherry picked from commit ca82afbfb7ee9a083d13c7861408e5759f2509cd) Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
- 07 Feb, 2013 1 commit
-
-
Sébastien Escudier authored
Closes #8076 (cherry picked from commit 2c1b60aec7e7fbeb4d0f0007c1933ad1572af490) Signed-off-by: Sébastien Escudier <sebastien-devel@celeos.eu>
-
- 06 Feb, 2013 1 commit
-
-
Rafaël Carré authored
If foo[i] or bar[i_index] are used in TAB_REMOVE / TAB_FIND, they will use another variable with local scope declared inside the macro. for (int i = 0; i < 1; i++) { TAB_REMOVE( count, array, foo[i] ); } will expand to: for (int i = 0; i < 1; i++) { int i_index; ..... for (int i = 0; i < count; i++) if (array[i] == foo[i]) { index = i; break; } ..... } And inner scope i is used to index foo, instead of the outer scope i which we would expect without knowing the content of the macro. (cherry picked from commit 728ef39d15cdbfc5b1bc9beba8a97493ef6c08fc) Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
- 05 Feb, 2013 7 commits
-
-
Christoph Miebach authored
-
Christoph Miebach authored
-
Sidney Doria authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Jean-Baptiste Kempf authored
Should close #8125 (cherry picked from commit 9daa9e5d25ebebc35a8b6be32c3b357e9f1985f9) Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Denis Charmet authored
The dummy support patch also fix #5287. (cherry picked from commit f000f5d9a46db78bf8e58459b65130e2a59568a1) Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
macosx: work-around for Mountain Lion which treats folder with the name 'BDMV' and the sub item 'INDEX.BDM' as a file with the UTI 'public.directory' (cherry picked from commit 79c8560a5e36d6f872a740aeeb6a62c8069c3eae) Conflicts: modules/gui/macosx/open.m
-