https://github.com/videolan/vlc

sort by:
Revision Author Date Message Commit Date
ddba522 Update live555 Contribs 14 June 2014, 14:40:48 UTC
7019e34 Contribs: Update libbluray to 0.6.0 And activate BD-J 14 June 2014, 14:36:32 UTC
69d6f2a hotkeys: new hotkey for toggling subtitles A subtitle track chosen by hotkey "v" is remembered in variable "spu-choice". The hotkey "Shift+v" toggles subtitle visibility. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 14 June 2014, 11:25:59 UTC
298616d Fix libmod_plugin undefined __imp_ symbols building for win32 When building current HEAD of master for x86_64-w64-mingw32 against current contribs, compilation fails at libmod_plugin due to undefined symbols of the form __imp_ModPlug_*. This patch modifies libmodplug in contribs by adding -DMODPLUG_STATIC to CFlags in the pkg-config file. A bug is also fixed in the main build system to make sure the CFLAGS are picked up from this pkg-config file. This problem occurs because of the following code in contrib/x86_64-w64-mingw32/include/libmodplug/modplug.h. This code is present in libmodplug obtained from running "make fetch & make" in the contribs directory, but not present in the prebuilt contribs obtained from running "make prebuilt". #if defined(_WIN32) || defined(__CYGWIN__) # if defined(MODPLUG_BUILD) && defined(DLL_EXPORT) # define MODPLUG_EXPORT __declspec(dllexport) # elif defined(MODPLUG_BUILD) || defined(MODPLUG_STATIC) # define MODPLUG_EXPORT # else # define MODPLUG_EXPORT __declspec(dllimport) # endif When building for Windows, if MODPLUG_STATIC is not defined, MODPLUG_EXPORT is defined as "__declspec(dllimport)". On Windows, dynamic symbols are prefixed with "__imp_", so this causes GCC to adjust the symbol references to the libmodplug functions accordingly. This patch therefore adds a patch to contribs for libmodplug's pkg-config file. It adds -DMODPLUG_STATIC to CFlags, so that when libmod_plugin is building it will have the correct symbol names. However, there is also a bug in the build system that needs to be fixed for this to work. The configure script sets a CXXFLAGS_mod containing the output of pkg-config for libmodplug, but not CFLAGS_mod. Additionally, the Makefile.ac for libmod_plugin sets CXXFLAGS when in fact the relevant files (mod.c) are plain C. Autotools therefore ignores these CXXFLAGS when generating a makefile. The solution is to add a macro to configure.ac to set CFLAGS_mod. This then needs to be used in modules/demux/Makefile.am to populate libmod_plugin_la_CFLAGS instead of libmod_plugin_la_CXXFLAGS (which gets ignored). Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 14 June 2014, 11:02:52 UTC
2391a63 vaapi: use proper official fourcc constants libva will never return I420 fourcc code, instead it uses IYUV. The first image format returned by vaQueryImageFormat with Intel VA backend is YV12, so using I420 wasn't an issue. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 14 June 2014, 11:00:08 UTC
4f3f133 vaapi: remove unused variable Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 14 June 2014, 11:00:05 UTC
2209e09 contrib: libvpx: allow compiling on android Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 14 June 2014, 10:58:41 UTC
58c5bed extras/ios: remove hack since it is no longer needed 14 June 2014, 10:47:01 UTC
0526001 vdpau/chroma: fix NULL dereference on error 14 June 2014, 07:31:01 UTC
8bb10a1 android mediacodec: catch more Java exceptions and add log messages 13 June 2014, 14:56:55 UTC
bb9e60e android thread: do not init the "finished" semaphore in the case of a detached thread. This commit prevents the leak of the semaphore. 12 June 2014, 07:14:37 UTC
c47334a Revert "mediacodec: wait to have the first frame successfully decoded to set the started flag" This reverts commit 703cfc648ee8e3fe70ee276508f44321a0b7b993 as it does not solve any issue. 12 June 2014, 06:50:52 UTC
7923fdf demux: mp4: rescrict atoms auto matching Allow restricting auto matching to some parent nodes. There was some size checks on stsd/wave vs wave to prevent bad matchs, but this could happen with any other codec name. 11 June 2014, 21:16:40 UTC
6585878 l10n: fixing code page for kk and tt 11 June 2014, 18:55:29 UTC
c59afb7 l10n: forgotten trivial code page localization 11 June 2014, 18:50:56 UTC
a4db08e mux: mp4: try not to set artitrary length on boundaries 11 June 2014, 18:50:06 UTC
429057f l10n: hopefully fixing Hebrew code page 11 June 2014, 18:33:06 UTC
54f52e1 l10n: trivial code page localization 11 June 2014, 18:30:16 UTC
7c1eb09 avcodec: encoder: Fix rounding issue 11 June 2014, 17:20:11 UTC
d697973 mux: mp4: compute duration incrementally (fix #11558) and use discontinuities as boundaries 11 June 2014, 17:12:18 UTC
8f087f2 sout: mux: flag discontinuity when joining streams Both streams must have same format, but dts/pts/pcr could start anywhere. 11 June 2014, 17:12:18 UTC
98a8ecd contrib: dvdnav: fix static linking to dvdread (fixes #11530) 11 June 2014, 16:39:47 UTC
cd747cd contrib: dvdread: fix static linking to dvdcss 11 June 2014, 16:39:47 UTC
3cebf08 demux: mp4: ignore SPU when setting PCR otherwise breaks PCR update on seek 11 June 2014, 14:02:19 UTC
afc9003 demux: mp4: fix grouped compressed samples reading (fix #11601) 11 June 2014, 14:02:19 UTC
0e89cd6 Qt: early instantiation for THEMIM Rather than wait for the first call to THEMIM to instantiate this singleton, do it explicitly at an early stage of the plugin initialization. This is useful for Qt as a dialog provider, since otherwise THEMIM doesn't get a chance to be set up until, e.g. the first call to a popupmenu, which then makes this menu slightly longer and noticeable to display. Also, remove the unneeded instantiation in the main_interface. (THEMIM has already been used a few lines earlier, which makes the call useless). 11 June 2014, 12:52:07 UTC
4107b25 Qt: fix missing slot (playlist entry of popupmenu) 11 June 2014, 12:52:06 UTC
b8ae32d Qt: fix multiple instances of a singleton if an input is already started Using THEMIM at this level results in instantiating multiples copies of what should be a singleton. This is because any preexisting input needs to be initialized in the constructor of the THEMIN (MainInputManager). This leads to recursively calling the constructor over and over. This patch directly calls the underlying functions(no functional change). 11 June 2014, 12:52:06 UTC
600dc54 l10n: German update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:58 UTC
139df90 l10n: Traditional Chinese update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:58 UTC
aadd1ac l10n: Simplified Chinese update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:57 UTC
1fa0d15 l10n: Walloon update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:56 UTC
d854f07 l10n: Vietnamese update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:56 UTC
b2edfd7 l10n: Uzbek update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:55 UTC
6b13684 l10n: Ukrainian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:55 UTC
2cdb70c l10n: Turkish update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:54 UTC
a8501c8 l10n: Thai update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:53 UTC
bdb45bb l10n: Telugu update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:53 UTC
ad58e72 l10n: Tamil update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:52 UTC
de3d6e4 l10n: Swedish update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:52 UTC
2c5444a l10n: Serbian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:51 UTC
551daa9 l10n: Albanian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:50 UTC
15cb1ba l10n: Samoan update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:50 UTC
835e892 l10n: Slovenian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:49 UTC
d7f0a59 l10n: Slovak update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:48 UTC
eee6d29 l10n: Sinhala update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:48 UTC
19c6ae5 l10n: Russian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:47 UTC
d5b69e2 l10n: Romanian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:46 UTC
ae70774 l10n: Portuguese update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:46 UTC
0457b76 l10n: Brazilian Portuguese update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:45 UTC
8000f4a l10n: Polish update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:44 UTC
6492f2a l10n: Punjabi update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:44 UTC
42ac0c1 l10n: Kapampangan update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:43 UTC
97c616d l10n: Oriya update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:42 UTC
4f432e6 l10n: Occitan update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:42 UTC
0aeeb28 l10n: Dutch update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:41 UTC
8b211c1 l10n: Nepali update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:41 UTC
08bedca l10n: Norwegian Bokmål update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:40 UTC
1382356 l10n: Burmese update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:39 UTC
5932d4f l10n: Malay update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:39 UTC
9b950c0 l10n: Marathi update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:38 UTC
d61e9b5 l10n: Mongolian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:37 UTC
e23f36a l10n: Malayalam update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:37 UTC
090ee62 l10n: Latvian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:36 UTC
30f9e02 l10n: Lithuanian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:35 UTC
26a502e l10n: Kirgyz update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:35 UTC
21c8096 l10n: Kurdish (Iraq) update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:34 UTC
54c2e1a l10n: Korean update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:33 UTC
13e14f4 l10n: Kazakh update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:33 UTC
cbefad9 l10n: Kabyle update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:32 UTC
09ff082 l10n: Japanese update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:31 UTC
d3ac0fe l10n: Italian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:31 UTC
1ae2db9 l10n: Icelandic update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:30 UTC
c31a5d1 l10n: Indonesian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:30 UTC
2dc0b61 l10n: Hungarian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:29 UTC
db98d2d l10n: Hindi update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:28 UTC
e65d734 l10n: Hebrew update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:28 UTC
7cf9966 l10n: Gujarati update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:27 UTC
9d93d83 l10n: Galician update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:26 UTC
0f7102b l10n: Scottish Gaelic update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:26 UTC
82e9dde l10n: French update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:25 UTC
919337b l10n: Finnish update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:24 UTC
4a0148a l10n: Fulah update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:24 UTC
17934e0 l10n: Persian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:23 UTC
0a00dfa l10n: Basque update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:22 UTC
c48242e l10n: Estonian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:22 UTC
8160f7f l10n: Spanish update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:21 UTC
01bbc41 l10n: Spanish (Mexico) update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:20 UTC
a3b6054 l10n: Modern Greek update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:19 UTC
0bd03a4 l10n: Danish update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:19 UTC
d253268 l10n: Welsh update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:18 UTC
fb8d05e l10n: Czech update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:18 UTC
0b4968d l10n: Catalan update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:17 UTC
0cb56c4 l10n: Bosnian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:16 UTC
71d4a0b l10n: Breton update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:15 UTC
e05ea29 l10n: Bengali update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:15 UTC
fe26cc1 l10n: Bengali (India) update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:14 UTC
dbfd8a1 l10n: Bulgarian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:13 UTC
9e43e2f l10n: Asturian update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:12 UTC
26d54a7 l10n: Arabic update Signed-off-by: Christoph Miebach <christoph.miebach@web.de> 10 June 2014, 22:31:11 UTC
back to top