]> git.sesse.net Git - vlc/log
vlc
10 years agovaapi: remove unused variable
Jean-Yves Avenard [Fri, 13 Jun 2014 11:02:36 +0000 (11:02 +0000)]
vaapi: remove unused variable

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
10 years agocontrib: libvpx: allow compiling on android
Vittorio Giovara [Fri, 13 Jun 2014 18:08:28 +0000 (18:08 +0000)]
contrib: libvpx: allow compiling on android

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
10 years agoextras/ios: remove hack since it is no longer needed
Felix Paul Kühne [Sat, 14 Jun 2014 10:46:41 +0000 (12:46 +0200)]
extras/ios: remove hack since it is no longer needed

10 years agovdpau/chroma: fix NULL dereference on error
Rémi Denis-Courmont [Sat, 14 Jun 2014 07:31:01 +0000 (10:31 +0300)]
vdpau/chroma: fix NULL dereference on error

10 years agoandroid mediacodec: catch more Java exceptions and add log messages
Adrien Maglo [Fri, 13 Jun 2014 14:56:55 +0000 (16:56 +0200)]
android mediacodec: catch more Java exceptions and add log messages

10 years agoandroid thread: do not init the "finished" semaphore in the case of a detached thread.
Adrien Maglo [Thu, 12 Jun 2014 07:14:37 +0000 (09:14 +0200)]
android thread: do not init the "finished" semaphore in the case of a detached thread.

This commit prevents the leak of the semaphore.

10 years agoRevert "mediacodec: wait to have the first frame successfully decoded to set the...
Adrien Maglo [Thu, 12 Jun 2014 06:50:52 +0000 (08:50 +0200)]
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.

10 years agodemux: mp4: rescrict atoms auto matching
Francois Cartegnie [Wed, 11 Jun 2014 21:12:34 +0000 (23:12 +0200)]
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.

10 years agol10n: fixing code page for kk and tt
Christoph Miebach [Wed, 11 Jun 2014 18:55:29 +0000 (14:55 -0400)]
l10n: fixing code page for kk and tt

10 years agol10n: forgotten trivial code page localization
Christoph Miebach [Wed, 11 Jun 2014 18:50:13 +0000 (14:50 -0400)]
l10n: forgotten trivial code page localization

10 years agomux: mp4: try not to set artitrary length on boundaries
Francois Cartegnie [Wed, 11 Jun 2014 18:47:52 +0000 (20:47 +0200)]
mux: mp4: try not to set artitrary length on boundaries

10 years agol10n: hopefully fixing Hebrew code page
Christoph Miebach [Wed, 11 Jun 2014 18:33:06 +0000 (14:33 -0400)]
l10n: hopefully fixing Hebrew code page

10 years agol10n: trivial code page localization
Christoph Miebach [Wed, 11 Jun 2014 18:29:30 +0000 (14:29 -0400)]
l10n: trivial code page localization

10 years agoavcodec: encoder: Fix rounding issue
Hugo Beauzée-Luyssen [Tue, 10 Jun 2014 21:35:52 +0000 (00:35 +0300)]
avcodec: encoder: Fix rounding issue

10 years agomux: mp4: compute duration incrementally (fix #11558)
Francois Cartegnie [Mon, 9 Jun 2014 14:31:37 +0000 (16:31 +0200)]
mux: mp4: compute duration incrementally (fix #11558)

and use discontinuities as boundaries

10 years agosout: mux: flag discontinuity when joining streams
Francois Cartegnie [Tue, 10 Jun 2014 12:08:50 +0000 (14:08 +0200)]
sout: mux: flag discontinuity when joining streams

Both streams must have same format, but dts/pts/pcr
could start anywhere.

10 years agocontrib: dvdnav: fix static linking to dvdread (fixes #11530)
Rémi Denis-Courmont [Wed, 11 Jun 2014 16:37:56 +0000 (19:37 +0300)]
contrib: dvdnav: fix static linking to dvdread (fixes #11530)

10 years agocontrib: dvdread: fix static linking to dvdcss
Rémi Denis-Courmont [Wed, 11 Jun 2014 16:34:33 +0000 (19:34 +0300)]
contrib: dvdread: fix static linking to dvdcss

10 years agodemux: mp4: ignore SPU when setting PCR
Francois Cartegnie [Wed, 11 Jun 2014 13:56:47 +0000 (15:56 +0200)]
demux: mp4: ignore SPU when setting PCR

otherwise breaks PCR update on seek

10 years agodemux: mp4: fix grouped compressed samples reading (fix #11601)
Francois Cartegnie [Wed, 11 Jun 2014 13:23:21 +0000 (15:23 +0200)]
demux: mp4: fix grouped compressed samples reading (fix #11601)

10 years agoQt: early instantiation for THEMIM
Erwan Tulou [Wed, 11 Jun 2014 11:16:36 +0000 (13:16 +0200)]
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).

10 years agoQt: fix missing slot (playlist entry of popupmenu)
Erwan Tulou [Wed, 11 Jun 2014 10:43:47 +0000 (12:43 +0200)]
Qt: fix missing slot (playlist entry of popupmenu)

10 years agoQt: fix multiple instances of a singleton if an input is already started
Erwan Tulou [Wed, 11 Jun 2014 10:08:44 +0000 (12:08 +0200)]
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).

10 years agol10n: German update
VideoLAN [Tue, 10 Jun 2014 22:24:09 +0000 (18:24 -0400)]
l10n: German update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Traditional Chinese update
VideoLAN [Tue, 10 Jun 2014 22:19:30 +0000 (18:19 -0400)]
l10n: Traditional Chinese update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Simplified Chinese update
Dean Lee [Tue, 10 Jun 2014 22:17:19 +0000 (18:17 -0400)]
l10n: Simplified Chinese update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Walloon update
VideoLAN [Tue, 10 Jun 2014 22:16:30 +0000 (18:16 -0400)]
l10n: Walloon update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Vietnamese update
VideoLAN [Tue, 10 Jun 2014 22:15:16 +0000 (18:15 -0400)]
l10n: Vietnamese update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Uzbek update
VideoLAN [Tue, 10 Jun 2014 22:13:52 +0000 (18:13 -0400)]
l10n: Uzbek update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Ukrainian update
Andriy Bandura [Tue, 10 Jun 2014 22:13:22 +0000 (18:13 -0400)]
l10n: Ukrainian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Turkish update
Kaya Zeren [Tue, 10 Jun 2014 22:12:22 +0000 (18:12 -0400)]
l10n: Turkish update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Thai update
Thanakrit Chomphuming [Tue, 10 Jun 2014 22:10:57 +0000 (18:10 -0400)]
l10n: Thai update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Telugu update
VideoLAN [Tue, 10 Jun 2014 22:09:12 +0000 (18:09 -0400)]
l10n: Telugu update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Tamil update
VideoLAN [Tue, 10 Jun 2014 22:08:17 +0000 (18:08 -0400)]
l10n: Tamil update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Swedish update
VideoLAN [Tue, 10 Jun 2014 22:07:32 +0000 (18:07 -0400)]
l10n: Swedish update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Serbian update
Đorđe Vasiljević [Tue, 10 Jun 2014 22:05:19 +0000 (18:05 -0400)]
l10n: Serbian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Albanian update
VideoLAN [Tue, 10 Jun 2014 22:01:43 +0000 (18:01 -0400)]
l10n: Albanian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Samoan update
VideoLAN [Tue, 10 Jun 2014 22:00:53 +0000 (18:00 -0400)]
l10n: Samoan update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Slovenian update
Martin Srebotnjak [Tue, 10 Jun 2014 21:59:50 +0000 (17:59 -0400)]
l10n: Slovenian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Slovak update
Marián Hikaník [Tue, 10 Jun 2014 21:57:48 +0000 (17:57 -0400)]
l10n: Slovak update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Sinhala update
VideoLAN [Tue, 10 Jun 2014 21:56:31 +0000 (17:56 -0400)]
l10n: Sinhala update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Russian update
Alexander Lakhin [Tue, 10 Jun 2014 21:55:55 +0000 (17:55 -0400)]
l10n: Russian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Romanian update
VideoLAN [Tue, 10 Jun 2014 21:54:40 +0000 (17:54 -0400)]
l10n: Romanian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Portuguese update
Manuela Silva/Alfredo Silva [Tue, 10 Jun 2014 21:51:53 +0000 (17:51 -0400)]
l10n: Portuguese update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Brazilian Portuguese update
VideoLAN [Tue, 10 Jun 2014 21:50:14 +0000 (17:50 -0400)]
l10n: Brazilian Portuguese update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Polish update
Michał Trzebiatowski [Tue, 10 Jun 2014 21:47:37 +0000 (17:47 -0400)]
l10n: Polish update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Punjabi update
Amanpreet Singh Alam [Tue, 10 Jun 2014 21:45:26 +0000 (17:45 -0400)]
l10n: Punjabi update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Kapampangan update
VideoLAN [Tue, 10 Jun 2014 21:43:34 +0000 (17:43 -0400)]
l10n: Kapampangan update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Oriya update
VideoLAN [Tue, 10 Jun 2014 21:43:00 +0000 (17:43 -0400)]
l10n: Oriya update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Occitan update
VideoLAN [Tue, 10 Jun 2014 21:41:46 +0000 (17:41 -0400)]
l10n: Occitan update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Dutch update
Thomas De Rocker [Tue, 10 Jun 2014 21:40:18 +0000 (17:40 -0400)]
l10n: Dutch update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Nepali update
VideoLAN [Tue, 10 Jun 2014 21:37:39 +0000 (17:37 -0400)]
l10n: Nepali update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Norwegian Bokmål update
VideoLAN [Tue, 10 Jun 2014 21:36:00 +0000 (17:36 -0400)]
l10n: Norwegian Bokmål update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Burmese update
VideoLAN [Tue, 10 Jun 2014 21:33:59 +0000 (17:33 -0400)]
l10n: Burmese update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Malay update
VideoLAN [Tue, 10 Jun 2014 21:32:47 +0000 (17:32 -0400)]
l10n: Malay update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Marathi update
Suraj Kawade [Tue, 10 Jun 2014 21:31:32 +0000 (17:31 -0400)]
l10n: Marathi update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Mongolian update
VideoLAN [Tue, 10 Jun 2014 21:30:55 +0000 (17:30 -0400)]
l10n: Mongolian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Malayalam update
VideoLAN [Tue, 10 Jun 2014 21:29:58 +0000 (17:29 -0400)]
l10n: Malayalam update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Latvian update
VideoLAN [Tue, 10 Jun 2014 21:29:29 +0000 (17:29 -0400)]
l10n: Latvian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Lithuanian update
Mindaugas Baranauskas [Tue, 10 Jun 2014 21:28:27 +0000 (17:28 -0400)]
l10n: Lithuanian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Kirgyz update
VideoLAN [Tue, 10 Jun 2014 21:27:18 +0000 (17:27 -0400)]
l10n: Kirgyz update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Kurdish (Iraq) update
VideoLAN [Tue, 10 Jun 2014 21:26:21 +0000 (17:26 -0400)]
l10n: Kurdish (Iraq) update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Korean update
VideoLAN [Tue, 10 Jun 2014 21:24:47 +0000 (17:24 -0400)]
l10n: Korean update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Kazakh update
VideoLAN [Tue, 10 Jun 2014 21:18:24 +0000 (17:18 -0400)]
l10n: Kazakh update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Kabyle update
VideoLAN [Tue, 10 Jun 2014 21:17:35 +0000 (17:17 -0400)]
l10n: Kabyle update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Japanese update
Fumio Nakayama [Tue, 10 Jun 2014 21:16:33 +0000 (17:16 -0400)]
l10n: Japanese update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Italian update
VideoLAN [Tue, 10 Jun 2014 21:15:45 +0000 (17:15 -0400)]
l10n: Italian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Icelandic update
Sveinn í Felli [Tue, 10 Jun 2014 21:13:58 +0000 (17:13 -0400)]
l10n: Icelandic update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Indonesian update
Luqman Hakim [Tue, 10 Jun 2014 21:13:24 +0000 (17:13 -0400)]
l10n: Indonesian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Hungarian update
Gabor Kelemen [Tue, 10 Jun 2014 21:12:31 +0000 (17:12 -0400)]
l10n: Hungarian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Hindi update
VideoLAN [Tue, 10 Jun 2014 21:11:24 +0000 (17:11 -0400)]
l10n: Hindi update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Hebrew update
Yaron Shahrabani [Tue, 10 Jun 2014 21:10:25 +0000 (17:10 -0400)]
l10n: Hebrew update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Gujarati update
VideoLAN [Tue, 10 Jun 2014 21:08:16 +0000 (17:08 -0400)]
l10n: Gujarati update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Galician update
Gonçalo Cordeiro [Tue, 10 Jun 2014 21:07:16 +0000 (17:07 -0400)]
l10n: Galician update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Scottish Gaelic update
Michael Bauer [Tue, 10 Jun 2014 21:06:02 +0000 (17:06 -0400)]
l10n: Scottish Gaelic update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: French update
VideoLAN [Tue, 10 Jun 2014 21:05:25 +0000 (17:05 -0400)]
l10n: French update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Finnish update
VideoLAN [Tue, 10 Jun 2014 21:04:09 +0000 (17:04 -0400)]
l10n: Finnish update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Fulah update
VideoLAN [Tue, 10 Jun 2014 21:03:25 +0000 (17:03 -0400)]
l10n: Fulah update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Persian update
VideoLAN [Tue, 10 Jun 2014 21:02:06 +0000 (17:02 -0400)]
l10n: Persian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Basque update
Julen Ruiz Aizpuru [Tue, 10 Jun 2014 21:00:36 +0000 (17:00 -0400)]
l10n: Basque update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Estonian update
VideoLAN [Tue, 10 Jun 2014 20:59:26 +0000 (16:59 -0400)]
l10n: Estonian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Spanish update
David González [Tue, 10 Jun 2014 20:57:56 +0000 (16:57 -0400)]
l10n: Spanish update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Spanish (Mexico) update
VideoLAN [Tue, 10 Jun 2014 20:56:14 +0000 (16:56 -0400)]
l10n: Spanish (Mexico) update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Modern Greek update
Savvas Nesseris [Tue, 10 Jun 2014 20:54:44 +0000 (16:54 -0400)]
l10n: Modern Greek update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Danish update
Aputsiaĸ Niels Janussen [Tue, 10 Jun 2014 20:40:36 +0000 (16:40 -0400)]
l10n: Danish update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Welsh update
Aled Powell [Tue, 10 Jun 2014 20:39:23 +0000 (16:39 -0400)]
l10n: Welsh update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Czech update
Tomáš Chvátal [Tue, 10 Jun 2014 20:37:51 +0000 (16:37 -0400)]
l10n: Czech update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Catalan update
Pau Iranzo [Tue, 10 Jun 2014 20:34:31 +0000 (16:34 -0400)]
l10n: Catalan update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Bosnian update
Adnan Memija [Tue, 10 Jun 2014 20:31:38 +0000 (16:31 -0400)]
l10n: Bosnian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Breton update
VideoLAN [Tue, 10 Jun 2014 20:29:39 +0000 (16:29 -0400)]
l10n: Breton update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Bengali update
VideoLAN [Tue, 10 Jun 2014 20:26:10 +0000 (16:26 -0400)]
l10n: Bengali update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Bengali (India) update
VideoLAN [Tue, 10 Jun 2014 20:23:13 +0000 (16:23 -0400)]
l10n: Bengali (India) update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Bulgarian update
VideoLAN [Tue, 10 Jun 2014 20:21:23 +0000 (16:21 -0400)]
l10n: Bulgarian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Asturian update
VideoLAN [Tue, 10 Jun 2014 20:16:06 +0000 (16:16 -0400)]
l10n: Asturian update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Arabic update
VideoLAN [Tue, 10 Jun 2014 20:14:11 +0000 (16:14 -0400)]
l10n: Arabic update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Aragonese update
Chesús Daniel Trigo [Tue, 10 Jun 2014 20:12:27 +0000 (16:12 -0400)]
l10n: Aragonese update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Amharic (Ethiopia) update
VideoLAN [Tue, 10 Jun 2014 20:10:01 +0000 (16:10 -0400)]
l10n: Amharic (Ethiopia) update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: Acoli update
VideoLAN [Tue, 10 Jun 2014 20:07:00 +0000 (16:07 -0400)]
l10n: Acoli update

Signed-off-by: Christoph Miebach <christoph.miebach@web.de>
10 years agol10n: make update-po
Christoph Miebach [Tue, 10 Jun 2014 19:50:00 +0000 (15:50 -0400)]
l10n: make update-po

10 years agorelease-howto: remove outdated info
Felix Paul Kühne [Tue, 10 Jun 2014 19:58:52 +0000 (21:58 +0200)]
release-howto: remove outdated info