- 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
-
- 04 Feb, 2013 1 commit
-
-
Rémi Denis-Courmont authored
Surprisingly, my gcc did not generate a possible unitilization warning. (cherry picked from commit ce96ee78f58c6d24eb66d5544b571cc3d0aa4343)
-
- 30 Jan, 2013 1 commit
-
-
Rémi Denis-Courmont authored
-
- 29 Jan, 2013 4 commits
-
-
Mirsal Ennaime authored
* Add missing call to vlc_object_release() in MarshalMetadata * Separate code paths with empty lines * Fix bracket position in if blocks (cherry picked from commit 3ed48e03b85431f8024389f1b352854f0714ec3c) Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
Alex Merry authored
VLC was getting kicked from the D-Bus when a track was stopped, because it was generating invalid data on the wire when sending the PropertiesChanged signal for the Metadata property. The issue was that if there was now no current track, GetInputMeta would never be called and the the variant would never be populated with the "a{sv}" structure that the call to dbus_message_iter_open_container claimed it would be. We now share the code that GetProperties used, which dealt with this correctly, although now both use CurrentInput (which is what the signal previously used) instead of CurrentPlayingItem (which is what GetProperties previously used). Signed-off-by: Mirsal Ennaime <mirsal@videolan.org> (cherry picked from commit 5460e18e20719255d4ed1461594fe72530a19f85) Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
Alex Merry authored
Rate should never be 0.0 (according to the spec), so we pick a sensible default when we do not have a current track: 1.0. Also, when the current item changes, the Rate may also change. So add it to the PropertiesChanged signal just to be sure. Signed-off-by: Mirsal Ennaime <mirsal@videolan.org> (cherry picked from commit 8f754d8715c72abc4ba1b0f26ae136c1db41437b) Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
Alex Merry authored
Several of these entries, such as xesam:artist, should be lists of strings, not strings. Signed-off-by: Mirsal Ennaime <mirsal@videolan.org> (cherry picked from commit ad8039e3e3b910730e71921b9f8952107644695a) Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
- 28 Jan, 2013 3 commits
-
-
Rémi Denis-Courmont authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
- 27 Jan, 2013 14 commits
-
-
Frank Chao authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Thanakrit Chomphuming authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Miguel Sousa authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Fumio Nakayama authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Vincenzo Reale authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Yaron Shahrabani authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Hardik Kishorpuri Goswami authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Ivar Smolin authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
David González authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Tomáš Chvátal authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Pau Iranzo authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Adnan Memija authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Iñigo Varela authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Chesús Daniel Trigo authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
- 26 Jan, 2013 3 commits
-
-
Rémi Denis-Courmont authored
This bug is already fixed differently in the main line.
-
Felix Paul Kühne authored
Please keep in mind that that the media player in the VLC media player brand is always written in lower case. Additionally, this change includes minor wording improvements for the German translation.
-
Rafaël Carré authored
A relative jump of +1 is the same than 0, we need +2 to skip the next instruction. Use named label so it is more clear than +2. Read the InstallDir regkey, "" points to vlc.exe (cherry picked from commit b0c000c5883225d0edb4f268d967c77d07254dce) Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
- 25 Jan, 2013 5 commits
-
-
Tomáš Chvátal authored
Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
That future version is expected to remove a number of already deprecated interfaces, such as CODEC_ID_* or the Snow codec. VLC still uses these interfaces as of today. (cherry picked from commit acf159fbabd1ffb7d2368f1224d5e4d732e7f304) Conflicts: configure.ac
-
Jean-Baptiste Kempf authored
Manual cherry-pick of 2ea0e546475dac1dd9032a06937966ed3d115ca9
-
Francois Cartegnie authored
(cherry picked from commit a49c94e306c0f05d5bdc74e6e6d24b69ef8d81fa) Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-