[vlc-commits] macosx: fix crash occuring while initializing the info panel

2015-04-11 Thread David Fuhrmann
vlc | branch: master | David Fuhrmann dfuhrm...@videolan.org | Sat Apr 11 
20:44:50 2015 +0200| [d87928927015fad3cdbcd0309bf3185c3672822f] | committer: 
David Fuhrmann

macosx: fix crash occuring while initializing the info panel

It is not allowed to call [[VLCMain sharedInstance] info]
on the non-main-thread, as this might load and initialize the
info window.

 http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d87928927015fad3cdbcd0309bf3185c3672822f
---

 modules/gui/macosx/intf.m |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index 44ca67b..e175a0f 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -371,7 +371,9 @@ static int InputEvent(vlc_object_t *p_this, const char 
*psz_var,
 [[VLCMain sharedInstance] 
performSelectorOnMainThread:@selector(updateMainWindow) withObject: nil 
waitUntilDone: NO];
 break;
 case INPUT_EVENT_STATISTICS:
-[[[VLCMain sharedInstance] info] 
performSelectorOnMainThread:@selector(updateStatistics) withObject: nil 
waitUntilDone: NO];
+dispatch_async(dispatch_get_main_queue(), ^{
+[[[VLCMain sharedInstance] info] updateStatistics];
+});
 break;
 case INPUT_EVENT_ES:
 break;

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] macosx: fix main window appearing with a delay of some seconds

2015-04-11 Thread David Fuhrmann
vlc | branch: master | David Fuhrmann dfuhrm...@videolan.org | Sat Apr 11 
20:46:45 2015 +0200| [8de7ac281107b742b40867b0694482bf9861effb] | committer: 
David Fuhrmann

macosx: fix main window appearing with a delay of some seconds

close #14361

 http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8de7ac281107b742b40867b0694482bf9861effb
---

 modules/gui/macosx/intf.m |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index e175a0f..678952b 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -784,7 +784,10 @@ static VLCMain *_o_sharedMainInstance = nil;
 PL_UNLOCK;
 
 [NSBundle loadNibNamed:@MainWindow owner: self];
-[o_mainwindow makeKeyAndOrderFront:nil];
+
+// This cannot be called directly here, as the main loop is not running 
yet so it would have no effect.
+// So lets enqueue it into the loop for later execution.
+[o_mainwindow performSelector:@selector(makeKeyAndOrderFront:) 
withObject:nil afterDelay:0];
 
 [[SUUpdater sharedUpdater] setDelegate:self];
 }

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] macosx: fix main window appearing with a delay of some seconds

2015-04-11 Thread David Fuhrmann
vlc/vlc-2.2 | branch: master | David Fuhrmann dfuhrm...@videolan.org | Sat 
Apr 11 20:46:45 2015 +0200| [bbecde2e90325d7d2fbdc011b2cf4808caf49edd] | 
committer: David Fuhrmann

macosx: fix main window appearing with a delay of some seconds

close #14361

(cherry picked from commit 8de7ac281107b742b40867b0694482bf9861effb)
Signed-off-by: David Fuhrmann dfuhrm...@videolan.org

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=bbecde2e90325d7d2fbdc011b2cf4808caf49edd
---

 modules/gui/macosx/intf.m |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index f59c159..05779af 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -783,7 +783,10 @@ static VLCMain *_o_sharedMainInstance = nil;
 PL_UNLOCK;
 
 [NSBundle loadNibNamed:@MainWindow owner: self];
-[o_mainwindow makeKeyAndOrderFront:nil];
+
+// This cannot be called directly here, as the main loop is not running 
yet so it would have no effect.
+// So lets enqueue it into the loop for later execution.
+[o_mainwindow performSelector:@selector(makeKeyAndOrderFront:) 
withObject:nil afterDelay:0];
 
 [[SUUpdater sharedUpdater] setDelegate:self];
 }

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: NSIS: updating Albanian, Danish and Swedish

2015-04-11 Thread Christoph Miebach
vlc/vlc-2.2 | branch: master | Christoph Miebach christoph.mieb...@web.de | 
Sat Apr 11 08:34:24 2015 -0400| [13c2bfc1a0eede899e5627302ae27ef7fef1cbe5] | 
committer: Christoph Miebach

l10n: NSIS: updating Albanian, Danish and Swedish

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=13c2bfc1a0eede899e5627302ae27ef7fef1cbe5
---

 extras/package/win32/NSIS/languages/albanian.nsh |1 +
 extras/package/win32/NSIS/languages/danish.nsh   |   52 +++---
 extras/package/win32/NSIS/languages/swedish.nsh  |2 +-
 3 files changed, 28 insertions(+), 27 deletions(-)

diff --git a/extras/package/win32/NSIS/languages/albanian.nsh 
b/extras/package/win32/NSIS/languages/albanian.nsh
index 0f33e71..684aa9d 100644
--- a/extras/package/win32/NSIS/languages/albanian.nsh
+++ b/extras/package/win32/NSIS/languages/albanian.nsh
@@ -19,6 +19,7 @@ StrCpy $Desc_Section04 Plugin-i VLC ActiveX
 StrCpy $Desc_Section05 DVD dhe CD luaj-mbrapa regjistrimin
 StrCpy $Desc_Section06 Vendos VLC media player si programin  default 
application per kete tip file
 StrCpy $Desc_Section07 Shto meny kontekst mjete ('Luaj Me VLC' dhe 'Shto Tek 
Lista VLC's')
+StrCpy $Desc_Section08 Fshij preferencat dhe file-et e cache te VLC media 
player-it te mbetura nga instalimet e meparshme
 StrCpy $Name_Section91 �'instalo 
 StrCpy $Name_Section92 Fshi preferencat dhe depo
 StrCpy $Desc_Section91 �'instaloj aparatin VLC media dhe t� gjith� 
komponent�t
diff --git a/extras/package/win32/NSIS/languages/danish.nsh 
b/extras/package/win32/NSIS/languages/danish.nsh
index 222df75..9648250 100644
--- a/extras/package/win32/NSIS/languages/danish.nsh
+++ b/extras/package/win32/NSIS/languages/danish.nsh
@@ -1,10 +1,10 @@
 StrCpy $Name_Section01 Medieafspiller (p�kr�vet)
-StrCpy $Name_Section02a Genvej til startmenu
-StrCpy $Name_Section02b Genvej til skrivebord
-StrCpy $Name_Section34 Web-udvidelsesmoduler
-StrCpy $Name_Section03 Mozilla-udvidelsesmodul
-StrCpy $Name_Section04 ActiveX-udvidelsesmodul
-StrCpy $Name_Section05 Diskafspilning
+StrCpy $Name_Section02a Genvej i menuen Start
+StrCpy $Name_Section02b Genvej p� skrivebordet
+StrCpy $Name_Section34 Web plugins
+StrCpy $Name_Section03 Mozilla plugin
+StrCpy $Name_Section04 ActiveX plugin
+StrCpy $Name_Section05 Afspilning af diske
 StrCpy $Name_Section06 Filtypetilknytninger
 StrCpy $Name_SectionGroupAudio Lydfiler
 StrCpy $Name_SectionGroupVideo Videofiler
@@ -12,24 +12,24 @@ StrCpy $Name_SectionGroupOther Andet
 StrCpy $Name_Section07 Genvejsmenuer
 StrCpy $Name_Section08 Slet indstillinger og cache
 StrCpy $Desc_Section01 Selve medieafspilleren
-StrCpy $Desc_Section02a Tilf�jer ikoner til din startmenu for nem adgang
-StrCpy $Desc_Section02b Tilf�jer ikon til dit skrivebord for nem adgang
-StrCpy $Desc_Section03 VLC-udvidelsesmodulet til Mozilla og Mozilla Firefox
-StrCpy $Desc_Section04 VLC-udvidelsesmodulet til ActiveX
+StrCpy $Desc_Section02a Tilf�jer ikoner til menuen Start for nem adgang
+StrCpy $Desc_Section02b Tilf�jer ikon p� dit skrivebord for nem adgang
+StrCpy $Desc_Section03 VLC Mozilla og Mozilla Firefox plugin'et
+StrCpy $Desc_Section04 VLC ActiveX plugin'et
 StrCpy $Desc_Section05 Registrering af DVD- og CD-afspilning
-StrCpy $Desc_Section06 Angiver VLC-medieafspilleren som standardprogram til 
den angive filtype
-StrCpy $Desc_Section07 'Tilf�j elementer i genvejsmenu (Afspil med VLC og 
Tilf�j i VLCs afspilningsliste)'
-StrCpy $Desc_Section08 Sletter VLC-medieafspillerens indstillinger og 
cache-filer efterladt fra tidligere installationer
+StrCpy $Desc_Section06 Indstil VLC media player som standardprogram til den 
angive filtype
+StrCpy $Desc_Section07 Tilf�j menupunkter i genvejsmenuen ('Afspil med VLC' 
og 'F�j til VLC's spilleliste')
+StrCpy $Desc_Section08 Sletter VLC media player-indstillinger og cache-filer 
efterladt fra tidligere installationer
 StrCpy $Name_Section91 Afinstall�r
 StrCpy $Name_Section92 Slet indstillinger og cache
-StrCpy $Desc_Section91 Afinstall�r VLC-medieafspiller og alle dens 
komponenter
-StrCpy $Desc_Section92 Sletter indstillinger og cache-filer fra 
VLC-medieafspilleren
+StrCpy $Desc_Section91 Afinstaller VLC media player og alle dens komponenter
+StrCpy $Desc_Section92 Sletter VLC media player's indstillinger og 
cache-filer
 StrCpy $ShellAssociation_Play Afspil
-StrCpy $ContextMenuEntry_PlayWith Afspil med VLC-medieafspiller
-StrCpy $ContextMenuEntry_AddToPlaylist Tilf�j i VLC-medieafspillerens 
afspilningsliste
-StrCpy $Link_VisitWebsite Bes�g VideoLAN VLC-medieafspillerens hjemmeside
+StrCpy $ContextMenuEntry_PlayWith Afspil med VLC media player
+StrCpy $ContextMenuEntry_AddToPlaylist F�j til VLC media player's spilleliste
+StrCpy $Link_VisitWebsite Bes�g hjemmesiden for VideoLAN VLC media player
 StrCpy $Name_InstTypeRecommended Anbefalet
-StrCpy $Name_InstTypeMinimum Minimum
+StrCpy $Name_InstTypeMinimum Minimal
 StrCpy $Name_InstTypeFull Fuld
 StrCpy $Action_OnArrivalDVD Afspil DVD-film
 StrCpy 

[vlc-commits] input: remove write-only stream_access stat values

2015-04-11 Thread Rémi Denis-Courmont
vlc | branch: master | Rémi Denis-Courmont r...@remlab.net | Sat Apr 11 
15:25:05 2015 +0300| [d9b6b884ffb4ee6070210ab4a5fc57189045ad71] | committer: 
Rémi Denis-Courmont

input: remove write-only stream_access stat values

 http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d9b6b884ffb4ee6070210ab4a5fc57189045ad71
---

 src/input/stream.c |   13 -
 1 file changed, 13 deletions(-)

diff --git a/src/input/stream.c b/src/input/stream.c
index 55ec2c8..03c858e 100644
--- a/src/input/stream.c
+++ b/src/input/stream.c
@@ -164,17 +164,10 @@ struct stream_sys_t
 /* Stat for both method */
 struct
 {
-bool b_fastseek;  /* From access */
-
 /* Stat about reading data */
 uint64_t i_read_count;
 uint64_t i_bytes;
 uint64_t i_read_time;
-
-/* Stat about seek */
-unsigned i_seek_count;
-uint64_t i_seek_time;
-
 } stat;
 
 /* Streams list */
@@ -309,12 +302,9 @@ stream_t *stream_AccessNew( access_t *p_access, char 
**ppsz_list )
 p_sys-i_pos = p_access-info.i_pos;
 
 /* Stats */
-access_Control( p_access, ACCESS_CAN_FASTSEEK, p_sys-stat.b_fastseek );
 p_sys-stat.i_bytes = 0;
 p_sys-stat.i_read_time = 0;
 p_sys-stat.i_read_count = 0;
-p_sys-stat.i_seek_count = 0;
-p_sys-stat.i_seek_time = 0;
 
 TAB_INIT( p_sys-i_list, p_sys-list );
 p_sys-i_list_index = 0;
@@ -955,9 +945,6 @@ static int AStreamSeekBlock( stream_t *s, uint64_t i_pos )
 if( AStreamRefillBlock( s ) )
 return VLC_EGENERIC;
 
-/* Update stat */
-p_sys-stat.i_seek_time += i_end - i_start;
-p_sys-stat.i_seek_count++;
 return VLC_SUCCESS;
 }
 else

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] demux: h264: probe non sps nal

2015-04-11 Thread Francois Cartegnie
vlc | branch: master | Francois Cartegnie fcvlc...@free.fr | Sat Apr 11 
17:36:34 2015 +0200| [52ed5f49ac4f96645b611e6c0e733fc37255ad53] | committer: 
Francois Cartegnie

demux: h264: probe non sps nal

first nal from raw h264 dump might not be sps

refs issues/raw-h264/test.h264

 http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=52ed5f49ac4f96645b611e6c0e733fc37255ad53
---

 modules/demux/mpeg/h264.c |   11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/modules/demux/mpeg/h264.c b/modules/demux/mpeg/h264.c
index fa43994..1d2f910 100644
--- a/modules/demux/mpeg/h264.c
+++ b/modules/demux/mpeg/h264.c
@@ -84,9 +84,14 @@ static int Open( vlc_object_t * p_this )
 
 if( stream_Peek( p_demux-s, p_peek, 5 )  5 ) return VLC_EGENERIC;
 
-if( p_peek[0] != 0x00 || p_peek[1] != 0x00 ||
-p_peek[2] != 0x00 || p_peek[3] != 0x01 ||
-(p_peek[4]0x1F) != 7 ) /* SPS */
+const uint8_t i_nal_type = p_peek[4]  0x1F;
+const uint8_t i_ref_idc = p_peek[4]  0x60;
+if( memcmp( p_peek, \x00\x00\x00\x01, 4 ) ||
+   (p_peek[4]  0x80) || /* reserved 0 */
+i_nal_type == 0 || i_nal_type  12 ||
+   ( !i_ref_idc  (i_nal_type  6 || i_nal_type == 7 || i_nal_type == 8) 
) ||
+   (  i_ref_idc  (i_nal_type == 6 || i_nal_type = 9) )
+  )
 {
 if( !p_demux-b_force )
 {

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: German update

2015-04-11 Thread Mario Siegmann
vlc/vlc-2.2 | branch: master | Mario Siegmann mario_siegm...@web.de | Sat Apr 
11 11:37:28 2015 -0400| [8ef1058ce88faf3023c2709815c061fd4a95d2a9] | committer: 
Christoph Miebach

l10n: German update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=8ef1058ce88faf3023c2709815c061fd4a95d2a9
---

 po/de.po |   51 ++-
 1 file changed, 26 insertions(+), 25 deletions(-)

diff --git a/po/de.po b/po/de.po
index 3aad22b..3d8d474 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,5 +1,5 @@
 # German translation
-# Copyright (C) 2014 VideoLAN
+# Copyright (C) 2015 VideoLAN
 # This file is distributed under the same license as the VLC package.
 #
 # Translators:
@@ -9,7 +9,7 @@
 # Jens Seidel jensseidel _at_ users.sf.net, 2005
 # Kai Hermann kai.uwe.herm...@gmail.com, 2009
 # Lars Gaudian lgaud...@me.com, 2013
-# Mario Siegmann mario_siegm...@web.de, 2014
+# Mario Siegmann mario_siegm...@web.de, 2014-2015
 # Martin Böh martin-b...@outlook.com, 2013
 # Mathias C. Berens | welcome-soft berens at welcome-soft.de, 2006
 # Michael inactive+banes...@transifex.com, 2013
@@ -24,8 +24,8 @@ msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2014-11-25 13:34+\n
-Last-Translator: Tobias Bannert tobann...@gmail.com\n
+PO-Revision-Date: 2015-02-27 13:10+\n
+Last-Translator: Mario Siegmann mario_siegm...@web.de\n
 Language-Team: German (http://www.transifex.com/projects/p/vlc-trans/;
 language/de/)\n
 Language: de\n
@@ -6668,9 +6668,8 @@ msgid Layer C time interleaving
 msgstr Layer C Zeit-Interleaving
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Netzwerkkennung
+msgstr Stream-Identifizierer
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -21034,6 +21033,8 @@ msgstr 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
 msgstr 
+Dieser Muxer ist nicht vorhanden. Die Nutzung dieses Profils wird 
+fehlschlagen.
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -23509,9 +23510,8 @@ msgid LibNotify Notification Plugin
 msgstr LibNotify-Benachrichtigungsplugin
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Copy-Paketisierer
+msgstr AVParser-Paketisierer
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -30054,9 +30054,6 @@ msgstr ; 
 msgid Media Manager List
 msgstr Media Manager-Liste
 
-#~ msgid Video acceleration not available
-#~ msgstr Videobeschleunigung nicht verfügbar
-
 #~ msgid 
 #~ The XVideo rendering acceleration driver does not support the required 
 #~ resolution of %ux%u pixels but %PRIu32x%PRIu32 pixels instead.\n
@@ -32387,6 +32384,24 @@ msgstr Media Manager-Liste
 #~ festlegen, z.B. durch Einstellen des Untertiteltyps oder Dateinamen.
 
 #, fuzzy
+#~ msgid 
+#~ Your video output acceleration driver does not support the required 
+#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
+#~ %PRIu32.\n
+#~ Video output acceleration will be disabled. However, rendering videos 
+#~ with overly large resolution may cause severe performance degration.
+#~ msgstr 
+#~ Der XVideo Treiber für die Videoausgabebeschleunigung unterstützt nicht 
+#~ die benötigte Auflösung von %ux%u Pixel aber stattdessen %PRIu32x
+#~ %PRIu32 pixel.\\n\n
+#~ Die Beschleunigung wird somit deaktiviert werden. Die Leistung kann sich 
+#~ erheblich verschlechtern, wenn die Auflösung sehr groß ist.
+
+#, fuzzy
+#~ msgid Video acceleration not available
+#~ msgstr Video-Ausgang der K Videobeschleunigung
+
+#, fuzzy
 #~ msgid Subtitle track added
 #~ msgstr Untertitelspur
 
@@ -32795,20 +32810,6 @@ msgstr Media Manager-Liste
 
 #, fuzzy
 #~ msgid 
-#~ Your video output acceleration driver does not support the required 
-#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
-#~ %PRIu32.\n
-#~ Video output acceleration will be disabled. However, rendering videos 
-#~ with overly large resolution may cause severe performance degration.
-#~ msgstr 
-#~ Der XVideo Treiber für die Videoausgabebeschleunigung unterstützt nicht 
-#~ die benötigte Auflösung von %ux%u Pixel aber stattdessen %PRIu32x
-#~ %PRIu32 pixel.\\n\n
-#~ Die Beschleunigung wird somit deaktiviert werden. Die Leistung kann sich 
-#~ erheblich verschlechtern, wenn die Auflösung sehr groß ist.
-
-#, fuzzy
-#~ msgid 
 #~ Force the subtiles format. Use \auto\, the set of supported values 
 #~ varies.
 #~ msgstr 

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Czech update

2015-04-11 Thread Tomáš Chvátal
vlc/vlc-2.2 | branch: master | Tomáš Chvátal tomas.chva...@gmail.com | Sat 
Apr 11 11:34:15 2015 -0400| [f56166942e91dff69f12e86f995b85fd46981b22] | 
committer: Christoph Miebach

l10n: Czech update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=f56166942e91dff69f12e86f995b85fd46981b22
---

 po/cs.po |   61 +
 1 file changed, 37 insertions(+), 24 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 19e0fc0..99c6e29 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -11,6 +11,7 @@
 # Miroslav Oujeský ouje...@mail.muni.cz, 2006
 # Sofartin hrubyma...@gmail.com, 2013
 # dreddux dred...@gmail.com, 2012
+# Petr Nekvinda petr.nekvi...@gmail.com, 2015
 # Petr Šimáček petr.sima...@gmail.com, 2012
 # Roman Ondráček ondracek.ro...@centrum.cz, 2014
 # sifkka sif...@gmail.com, 2014
@@ -26,7 +27,7 @@ msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2015-02-14 16:03+\n
+PO-Revision-Date: 2015-03-06 09:41+\n
 Last-Translator: Tomáš Chvátal tomas.chva...@gmail.com\n
 Language-Team: Czech (http://www.transifex.com/projects/p/vlc-trans/language/;
 cs/)\n
@@ -176,7 +177,7 @@ msgstr Obecná nastavení videa
 
 #: include/vlc_config_cat.h:77
 msgid General settings for video output modules.
-msgstr 
+msgstr Obecná nastavení pro moduly výstupu videa.
 
 #: include/vlc_config_cat.h:80
 msgid Video filters are used to process the video stream.
@@ -1889,7 +1890,7 @@ msgstr Výchozí zesílení přehrávání
 
 #: src/libvlc-module.c:212
 msgid This is the gain used for stream without replay gain information
-msgstr Zesílení použito pro proud bez informací o zesílení
+msgstr Zesílení použité pro proud bez informací o zesílení
 
 #: src/libvlc-module.c:214
 msgid Peak protection
@@ -1931,11 +1932,10 @@ msgid 
 \video filters\ modules section. You can also set many miscellaneous video 
 options.
 msgstr 
-Tyto možnosti dovolují modifikovat chování podsystému výstupu videa. 
-Například je možné povolit video filtry (odstranění prokládání, úprava 
-obrazu, etc.). Zde je možné filtry povolit, zatímco jejich konfigurace se 
-provádí v sekci \moduly pro video filtry\. Rovněž je zde možné nastavit 
-další různé volby.
+Možnosti pro úpravy chování podsystému výstupu videa. Například je možné 
+povolit video filtry (odstranění prokládání, úprava obrazu, atp.). Zde je 
+možné filtry povolit, zatímco jejich konfigurace se provádí v sekci \moduly 
+pro video filtry\. Rovněž je zde možné nastavit další různé volby.
 
 #: src/libvlc-module.c:242
 msgid Video output module
@@ -2304,6 +2304,8 @@ msgid 
 This adds post-processing filters to enhance the picture quality, for 
 instance deinterlacing, or distort the video.
 msgstr 
+Toto přidává post-processing filtr vylepšující kvalitu obrazu rozkládání 
+nebo deformování obrazu.
 
 #: src/libvlc-module.c:387
 msgid Video snapshot directory (or filename)
@@ -2350,6 +2352,8 @@ msgid 
 You can enforce the width of the video snapshot. By default it will keep the 
 original width (-1). Using 0 will scale the width to keep the aspect ratio.
 msgstr 
+Můžete vynutit šířku snímku videa. Originálně je držena původní šířka (-1). 
+Použitím 0 bude měřítko šířky dodržovat poměr stran.
 
 #: src/libvlc-module.c:413
 msgid Video snapshot height
@@ -2361,6 +2365,8 @@ msgid 
 the original height (-1). Using 0 will scale the height to keep the aspect 
 ratio.
 msgstr 
+Můžete vynutit výšku snímku videa. Originálně je držena původní výška (-1). 
+Použitím 0 bude měřítko výšky dodržovat poměr stran.
 
 #: src/libvlc-module.c:419
 msgid Video cropping
@@ -2386,6 +2392,11 @@ msgid 
 y (4:3, 16:9, etc.) expressing the global image aspect, or a float value 
 (1.25, 1., etc.) expressing pixel squareness.
 msgstr 
+Toto nutí zdrojový poměr stran. Například některá DVD nárokují poměr 16:9, 
+ale skutečně jsou v poměru 4:3. Toto může být také použito jako tip pro VLC, 
+kdy film nenese informaci o poměru stran. Akceptované formáty jsou x:y (4:3, 
+16:9, atd.) vyjadřující globální poměr snímku nebo plovoucí hodnotu (1.25, 
+1., atd.) vyjadřující kolmost pixelu.
 
 #: src/libvlc-module.c:434
 msgid Video Auto Scaling
@@ -2556,7 +2567,7 @@ msgstr Hodnota mezipaměti pro síťové zdroje, v 
milisekundách.
 
 #: src/libvlc-module.c:515
 msgid Clock reference average counter
-msgstr 
+msgstr Časová reference poměru počítadla
 
 #: src/libvlc-module.c:517
 msgid 
@@ -2653,7 +2664,7 @@ msgstr Výchozí rozhraní pro multicast. Přepisuje 
směrovací tabulku.
 
 #: src/libvlc-module.c:557
 msgid DiffServ Code Point
-msgstr 
+msgstr DiffServ Kód Bodu
 
 #: src/libvlc-module.c:558
 msgid 
@@ -2718,7 +2729,7 @@ msgstr 
 
 #: src/libvlc-module.c:596
 msgid Menu language
-msgstr 
+msgstr Nabídka jazyku
 
 #: src/libvlc-module.c:598
 msgid 
@@ -2753,6 +2764,10 @@ msgid 
 option if you don't have enough CPU power or 

[vlc-commits] l10n: Danish update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
11:36:02 2015 -0400| [e8728f4783015f182052b429696d6643577465ed] | committer: 
Christoph Miebach

l10n: Danish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=e8728f4783015f182052b429696d6643577465ed
---

 po/da.po | 7034 +-
 1 file changed, 3780 insertions(+), 3254 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=e8728f4783015f182052b429696d6643577465ed
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Azerbaijani update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
11:25:12 2015 -0400| [31b91a013ffee22281ca8a34da8a496cdbf8b109] | committer: 
Christoph Miebach

l10n: Azerbaijani update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=31b91a013ffee22281ca8a34da8a496cdbf8b109
---

 po/az.po |  256 +-
 1 file changed, 119 insertions(+), 137 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=31b91a013ffee22281ca8a34da8a496cdbf8b109
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Hindi update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
11:59:58 2015 -0400| [7911d534589b05583736423b607d870d44233191] | committer: 
Christoph Miebach

l10n: Hindi update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=7911d534589b05583736423b607d870d44233191
---

 po/hi.po |  722 ++
 1 file changed, 303 insertions(+), 419 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=7911d534589b05583736423b607d870d44233191
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Hebrew update

2015-04-11 Thread Yaron Shahrabani
vlc/vlc-2.2 | branch: master | Yaron Shahrabani sh.ya...@gmail.com | Sat Apr 
11 11:58:41 2015 -0400| [454f5e3ca4140b994999e0ea7632ab00e552b224] | committer: 
Christoph Miebach

l10n: Hebrew update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=454f5e3ca4140b994999e0ea7632ab00e552b224
---

 po/he.po |  309 ++
 1 file changed, 147 insertions(+), 162 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=454f5e3ca4140b994999e0ea7632ab00e552b224
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Finnish update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
11:54:48 2015 -0400| [82d5a3cdcff2acbae774d575bcde9f79290854f3] | committer: 
Christoph Miebach

l10n: Finnish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=82d5a3cdcff2acbae774d575bcde9f79290854f3
---

 po/fi.po |  790 --
 1 file changed, 402 insertions(+), 388 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=82d5a3cdcff2acbae774d575bcde9f79290854f3
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] macosx: wait in vout provider for the interface to be initialized

2015-04-11 Thread David Fuhrmann
vlc/vlc-2.2 | branch: master | David Fuhrmann dfuhrm...@videolan.org | Sat 
Apr 11 16:25:29 2015 +0200| [9cb61ac93e0e5468945048d22f160232424dddac] | 
committer: David Fuhrmann

macosx: wait in vout provider for the interface to be initialized

Because the playlist is started before the interface is up,
the vout window provider waits until basic initalization is done
in the interface (initialization of VLCIntf, NSApp, static vars).

This is still sort of a hack, ideally the playlist should be
started only after all interfaces are fully initialized.

close #11585

(cherry picked from commit 4a17358abea2b8fce47e8af3888aec638debfb42)
Signed-off-by: David Fuhrmann dfuhrm...@videolan.org

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=9cb61ac93e0e5468945048d22f160232424dddac
---

 modules/gui/macosx/intf.m |   42 --
 1 file changed, 36 insertions(+), 6 deletions(-)

diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index 1162c76..a2ceb07 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -99,6 +99,10 @@ static int BossCallback(vlc_object_t *, const char *,
 #pragma mark -
 #pragma mark VLC Interface Object Callbacks
 
+static bool b_intf_starting = false;
+static vlc_mutex_t start_mutex = VLC_STATIC_MUTEX;
+static vlc_cond_t  start_cond = VLC_STATIC_COND;
+
 /*
  * OpenIntf: initialize interface
  */
@@ -108,6 +112,7 @@ int OpenIntf (vlc_object_t *p_this)
 [VLCApplication sharedApplication];
 
 intf_thread_t *p_intf = (intf_thread_t*) p_this;
+msg_Dbg(p_intf, Starting macosx interface);
 Run(p_intf);
 
 [o_pool release];
@@ -120,13 +125,34 @@ static int WindowControl(vout_window_t *, int i_query, 
va_list);
 
 int WindowOpen(vout_window_t *p_wnd, const vout_window_cfg_t *cfg)
 {
-NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
-intf_thread_t *p_intf = VLCIntf;
-if (!p_intf) {
-msg_Err(p_wnd, Mac OS X interface not found);
-[o_pool release];
+msg_Dbg(p_wnd, Opening video window);
+
+/*
+ * HACK: Wait 200ms for the interface to come up.
+ * WindowOpen might be called before the mac intf is started. Lets wait 
until OpenIntf gets called
+ * and does basic initialization. Enqueuing the vout controller request 
into the main loop later on
+ * ensures that the actual window is created after the interface is fully 
initialized
+ * (applicationDidFinishLaunching).
+ *
+ * Timeout is needed as the mac intf is not always started at all.
+ */
+mtime_t deadline = mdate() + 20;
+vlc_mutex_lock(start_mutex);
+while (!b_intf_starting) {
+if (vlc_cond_timedwait(start_cond, start_mutex, deadline)) {
+break; // timeout
+}
+}
+
+if (!b_intf_starting) {
+msg_Err(p_wnd, Cannot create vout as Mac OS X interface was not 
found);
+vlc_mutex_unlock(start_mutex);
 return VLC_EGENERIC;
 }
+vlc_mutex_unlock(start_mutex);
+
+NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
+
 NSRect proposedVideoViewPosition = NSMakeRect(cfg-x, cfg-y, cfg-width, 
cfg-height);
 
 [o_vout_provider_lock lock];
@@ -296,9 +322,13 @@ static void Run(intf_thread_t *p_intf)
 o_vout_provider_lock = [[NSLock alloc] init];
 
 libvlc_SetExitHandler(p_intf-p_libvlc, QuitVLC, p_intf);
-
 [[VLCMain sharedInstance] setIntf: p_intf];
 
+vlc_mutex_lock(start_mutex);
+b_intf_starting = true;
+vlc_cond_signal(start_cond);
+vlc_mutex_unlock(start_mutex);
+
 [NSBundle loadNibNamed: @MainMenu owner: NSApp];
 
 [NSApp run];

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] darwinvlc: move play call to minimize time for race condition

2015-04-11 Thread David Fuhrmann
vlc/vlc-2.2 | branch: master | David Fuhrmann dfuhrm...@videolan.org | Sat 
Apr 11 16:19:50 2015 +0200| [033a61377aabb172469e8edb6268f17fe37fe116] | 
committer: David Fuhrmann

darwinvlc: move play call to minimize time for race condition

This is still racy, but it should reduce the time between playlist
and interface start.

(cherry picked from commit b5c0fe454de96a1328751a896b42daf6ee732284)
Signed-off-by: David Fuhrmann dfuhrm...@videolan.org

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=033a61377aabb172469e8edb6268f17fe37fe116
---

 bin/darwinvlc.c |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/bin/darwinvlc.c b/bin/darwinvlc.c
index fbad415..1841aca 100644
--- a/bin/darwinvlc.c
+++ b/bin/darwinvlc.c
@@ -221,10 +221,9 @@ int main( int i_argc, const char *ppsz_argv[] )
 libvlc_set_app_id (vlc, org.VideoLAN.VLC, PACKAGE_VERSION, PACKAGE_NAME);
 libvlc_set_user_agent (vlc, VLC media player, VLC/PACKAGE_VERSION);
 
-libvlc_playlist_play (vlc, -1, 0, NULL);
-
 libvlc_add_intf (vlc, hotkeys,none);
 
+libvlc_playlist_play (vlc, -1, 0, NULL);
 if (libvlc_add_intf (vlc, NULL))
 goto out;
 

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] macosx: update play and playback mode status on startup

2015-04-11 Thread David Fuhrmann
vlc/vlc-2.2 | branch: master | David Fuhrmann dfuhrm...@videolan.org | Sat 
Apr 11 16:21:57 2015 +0200| [04714baa6fac2b3fb6ad24f8fa1dbdb8603adc7c] | 
committer: David Fuhrmann

macosx: update play and playback mode status on startup

Because the playback might have been started before the interface
registeres its callbacks, set the state manually.

close #14046

(cherry picked from commit 5598f816905d5262928650c38d6b9a501b232deb)
Signed-off-by: David Fuhrmann dfuhrm...@videolan.org

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=04714baa6fac2b3fb6ad24f8fa1dbdb8603adc7c
---

 modules/gui/macosx/intf.m |7 +++
 1 file changed, 7 insertions(+)

diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index 1e3f28f..1162c76 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -797,6 +797,13 @@ static VLCMain *_o_sharedMainInstance = nil;
 [o_mainwindow updateTimeSlider];
 [o_mainwindow updateVolumeSlider];
 
+/* Hack: Playlist is started before the interface.
+ * Thus, call additional updaters as we might miss these events if posted 
before
+ * the callbacks are registered.
+ */
+[self PlaylistItemChanged];
+[self playbackModeUpdated];
+
 // respect playlist-autostart
 // note that PLAYLIST_PLAY will not stop any playback if already started
 playlist_t * p_playlist = pl_Get(VLCIntf);

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Traditional Chinese update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
12:37:25 2015 -0400| [fe7efa967ae2440b14403fad90d57e0a332528ff] | committer: 
Christoph Miebach

l10n: Traditional Chinese update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=fe7efa967ae2440b14403fad90d57e0a332528ff
---

 po/zh_TW.po |   19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_TW.po
index b592125..2ecca45 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -1,5 +1,5 @@
 # Traditional Chinese translation
-# Copyright (C) 2014 VideoLAN
+# Copyright (C) 2015 VideoLAN
 # This file is distributed under the same license as the VLC package.
 #
 # Translators:
@@ -8,6 +8,7 @@
 # Hsi Ching Chao frank0...@gmail.com, 2013
 # jakech jak...@gmail.com, 2014
 # Jeff Huang s8321...@gmail.com, 2014
+# ljkTransifex lingk12...@hotmail.com, 2015
 # Ruei-Yuan Lu rueiyuan...@gmail.com, 2012
 # taijuin lee taij...@gmail.com, 2013
 # Chen Wang iwan...@gmail.com, 2013
@@ -18,8 +19,8 @@ msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2014-11-28 02:27+\n
-Last-Translator: Jeff Huang s8321...@gmail.com\n
+PO-Revision-Date: 2015-03-25 07:06+\n
+Last-Translator: ljkTransifex lingk12...@hotmail.com\n
 Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/vlc-;
 trans/language/zh_TW/)\n
 Language: zh_TW\n
@@ -3727,7 +3728,7 @@ msgstr 正常速率
 
 #: src/libvlc-module.c:1204
 msgid Select the hotkey to set the playback rate back to normal.
-msgstr 
+msgstr 選擇讓播放速度調回成正常速度的熱鍵
 
 #: src/libvlc-module.c:1205 modules/gui/qt4/menus.cpp:875
 msgid Faster (fine)
@@ -5287,7 +5288,7 @@ msgstr Tagalog
 
 #: src/text/iso-639_def.h:184
 msgid Thai
-msgstr Thai
+msgstr 泰國話
 
 #: src/text/iso-639_def.h:185
 msgid Tibetan
@@ -5499,7 +5500,7 @@ msgstr 使用藍光選單。若停用則影片會直接開始播放
 
 #: modules/access/bluray.c:70
 msgid Region code
-msgstr 
+msgstr 區域碼
 
 #: modules/access/bluray.c:71
 msgid 
@@ -6190,9 +6191,8 @@ msgid Layer C time interleaving
 msgstr 
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr 串流過濾器
+msgstr 
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -21873,9 +21873,8 @@ msgid LibNotify Notification Plugin
 msgstr LibNotify 通知訊息外掛
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr 複製封包器
+msgstr 
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Polish update

2015-04-11 Thread Michał Trzebiatowski
vlc/vlc-2.2 | branch: master | Michał Trzebiatowski hippie_1...@hotmail.com | 
Sat Apr 11 12:19:45 2015 -0400| [b677c55dd1bf09ee8cc1968adc817e4a4e2780cb] | 
committer: Christoph Miebach

l10n: Polish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=b677c55dd1bf09ee8cc1968adc817e4a4e2780cb
---

 po/pl.po |   49 -
 1 file changed, 24 insertions(+), 25 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 59b6602..f5a87b2 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -6,7 +6,7 @@
 # Daniel Krawczyk daniekon...@gmail.com, 2014
 # Grzegorz Pruchniakowski gootec...@o2.pl, 2013-2014
 # Cysioland cysiol...@gmail.com, 2013
-# Michał Trzebiatowski hippie_1...@hotmail.com, 2007-2014
+# Michał Trzebiatowski hippie_1...@hotmail.com, 2007-2015
 # robaks, 2013
 # filux smartadmi...@gmail.com, 2014
 msgid 
@@ -14,8 +14,8 @@ msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2014-12-29 08:26+\n
-Last-Translator: Grzegorz Pruchniakowski gootec...@o2.pl\n
+PO-Revision-Date: 2015-02-27 10:19+\n
+Last-Translator: M T hippie_1...@hotmail.com\n
 Language-Team: Polish (http://www.transifex.com/projects/p/vlc-trans/;
 language/pl/)\n
 Language: pl\n
@@ -6574,9 +6574,8 @@ msgid Layer C time interleaving
 msgstr Przeplatanie czasu warstwy C
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Identyfikator sieci
+msgstr Identyfikator strumienia
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -20831,7 +20830,7 @@ msgstr Ten mukser nie jest dostarczany przez VLC: może 
brakować.
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
-msgstr 
+msgstr Tego muksera brakuje. Używanie tego profilu nie powiedzie się
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -23291,9 +23290,8 @@ msgid LibNotify Notification Plugin
 msgstr Wtyczka powiadomienia LibNotify
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Pakietowiec kopiowania
+msgstr Pakietowiec avparser
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -29751,9 +29749,6 @@ msgstr ; 
 msgid Media Manager List
 msgstr Lista menedżera mediów
 
-#~ msgid Video acceleration not available
-#~ msgstr Przyspieszenie obrazu jest nie dostępne
-
 #~ msgid 
 #~ The XVideo rendering acceleration driver does not support the required 
 #~ resolution of %ux%u pixels but %PRIu32x%PRIu32 pixels instead.\n
@@ -32795,6 +32790,24 @@ msgstr Lista menedżera mediów
 #~ ustawienie typu napisów lub nazwy pliku.
 
 #, fuzzy
+#~ msgid 
+#~ Your video output acceleration driver does not support the required 
+#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
+#~ %PRIu32.\n
+#~ Video output acceleration will be disabled. However, rendering videos 
+#~ with overly large resolution may cause severe performance degration.
+#~ msgstr 
+#~ Sterownik XVideo przyspieszenia renderowania nie obsługuje wymaganej 
+#~ rozdzielczości: %ux%u pikseli. Maksymalna obsługiwana rozdzielczość to 
+#~ %PRIu32x%PRIu32.\n
+#~ Przyspieszenie zostanie wyłączone. Jednak renderowanie filmów o zbyt 
+#~ dużej rozdzielczości, może spowodować poważny spadek wydajności.
+
+#, fuzzy
+#~ msgid Video acceleration not available
+#~ msgstr Wyjście obrazu K Video Acceleration
+
+#, fuzzy
 #~ msgid Subtitle track added
 #~ msgstr Ścieżka napisów
 
@@ -33431,20 +33444,6 @@ msgstr Lista menedżera mediów
 #~ informacji na ekranie (OSD).
 
 #, fuzzy
-#~ msgid 
-#~ Your video output acceleration driver does not support the required 
-#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
-#~ %PRIu32.\n
-#~ Video output acceleration will be disabled. However, rendering videos 
-#~ with overly large resolution may cause severe performance degration.
-#~ msgstr 
-#~ Sterownik XVideo przyspieszenia renderowania nie obsługuje wymaganej 
-#~ rozdzielczości: %ux%u pikseli. Maksymalna obsługiwana rozdzielczość to 
-#~ %PRIu32x%PRIu32.\n
-#~ Przyspieszenie zostanie wyłączone. Jednak renderowanie filmów o zbyt 
-#~ dużej rozdzielczości, może spowodować poważny spadek wydajności.
-
-#, fuzzy
 #~ msgid Consider width and height as maximum values.
 #~ msgstr Kliknij, aby odtwarzać dźwięk z maksymalną głośnością.
 

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Turkish update

2015-04-11 Thread Kaya Zeren
vlc/vlc-2.2 | branch: master | Kaya Zeren kayaze...@gmail.com | Sat Apr 11 
12:34:02 2015 -0400| [9b1baeb49cf0f9ceb908ddc6c2503ccc7aa0d4b0] | committer: 
Christoph Miebach

l10n: Turkish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=9b1baeb49cf0f9ceb908ddc6c2503ccc7aa0d4b0
---

 po/tr.po |   49 -
 1 file changed, 24 insertions(+), 25 deletions(-)

diff --git a/po/tr.po b/po/tr.po
index ebf75e4..dbd7727 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -19,7 +19,7 @@ msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2015-01-23 07:43+\n
+PO-Revision-Date: 2015-02-27 23:26+\n
 Last-Translator: Kaya Zeren kayaze...@gmail.com\n
 Language-Team: Turkish (http://www.transifex.com/projects/p/vlc-trans/;
 language/tr/)\n
@@ -6651,9 +6651,8 @@ msgid Layer C time interleaving
 msgstr C katmanı zaman harmanlaması
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Ağ kimliği
+msgstr Akış kodu
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -16602,7 +16601,7 @@ msgstr İki Geçişli
 #: modules/gui/qt4/components/extended_panels.cpp:1246
 #: modules/gui/qt4/ui/equalizer.h:136
 msgid Preamp
-msgstr Öngüçlendirme
+msgstr Ön güçlendirme
 
 #: modules/gui/macosx/AudioEffects.m:117
 msgid Enable dynamic range compressor
@@ -20955,7 +20954,7 @@ msgstr Bu çoklayıcı doğrudan VLC tarafından 
sağlanmıyor: Eksik olabilir.
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
-msgstr 
+msgstr Bu çoklayıcı bulunamadı. Bu profil kullanılamayacak
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -23405,9 +23404,8 @@ msgid LibNotify Notification Plugin
 msgstr LibNotify Bildirimleri Uygulama Eki
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Kopya Paketleyicisi
+msgstr avparser paketleyici
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -29855,9 +29853,6 @@ msgstr ; 
 msgid Media Manager List
 msgstr Ortam Yöneticisi Listesi
 
-#~ msgid Video acceleration not available
-#~ msgstr Görüntü hızlandırması kullanılamıyor
-
 #~ msgid 
 #~ The XVideo rendering acceleration driver does not support the required 
 #~ resolution of %ux%u pixels but %PRIu32x%PRIu32 pixels instead.\n
@@ -32719,6 +32714,23 @@ msgstr Ortam Yöneticisi Listesi
 #~ msgstr VLC Hata Ayıklama Günlüğü (%s).rtf
 
 #, fuzzy
+#~ msgid 
+#~ Your video output acceleration driver does not support the required 
+#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
+#~ %PRIu32.\n
+#~ Video output acceleration will be disabled. However, rendering videos 
+#~ with overly large resolution may cause severe performance degration.
+#~ msgstr 
+#~ XVideo görüntü hızlandırma sürücünüz istenen çözünürlüğü desteklemiyor: 
+#~ %ux%u piksel. Desteklenen en yüksek çözünürlük: %PRIu32x%PRIu32.\n
+#~ Hızlandırma devre dışı bırakılacak. Çözünürlük yüksek olduğunda, 
+#~ görüntüler oluşturulurken başarım çok fazla düşebilir.
+
+#, fuzzy
+#~ msgid Video acceleration not available
+#~ msgstr K Video hızlandırıcı görüntü çıkışı
+
+#, fuzzy
 #~ msgid Subtitle track added
 #~ msgstr Altyazı izi
 
@@ -33288,19 +33300,6 @@ msgstr Ortam Yöneticisi Listesi
 #~ donanımsal hızlandırma kullanılmaya çalışılır.
 
 #, fuzzy
-#~ msgid 
-#~ Your video output acceleration driver does not support the required 
-#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
-#~ %PRIu32.\n
-#~ Video output acceleration will be disabled. However, rendering videos 
-#~ with overly large resolution may cause severe performance degration.
-#~ msgstr 
-#~ XVideo görüntü hızlandırma sürücünüz istenen çözünürlüğü desteklemiyor: 
-#~ %ux%u piksel. Desteklenen en yüksek çözünürlük: %PRIu32x%PRIu32.\n
-#~ Hızlandırma devre dışı bırakılacak. Çözünürlük yüksek olduğunda, 
-#~ görüntüler oluşturulurken başarım çok fazla düşebilir.
-
-#, fuzzy
 #~ msgid Are you sure you wish to create the stream ?
 #~ msgstr  Akışı oluşturmak istediğinize emin misiniz?
 
@@ -34518,7 +34517,7 @@ msgstr Ortam Yöneticisi Listesi
 
 #, fuzzy
 #~ msgid Preamp\n
-#~ msgstr Öngüçlendirme
+#~ msgstr Ön güçlendirme
 
 #, fuzzy
 #~ msgid  dB
@@ -37858,7 +37857,7 @@ msgstr Ortam Yöneticisi Listesi
 #~ msgid 
 #~ Preamp\n
 #~ 12.0dB
-#~ msgstr Öngüçlendirme
+#~ msgstr Ön güçlendirme
 
 #, fuzzy
 #~ msgid More Information

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Slovenian update

2015-04-11 Thread Martin Srebotnjak
vlc/vlc-2.2 | branch: master | Martin Srebotnjak mi...@filmsi.net | Sat Apr 
11 12:25:59 2015 -0400| [730797ec558af68b23ded75d5c1d5b6eb2f1f409] | committer: 
Christoph Miebach

l10n: Slovenian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=730797ec558af68b23ded75d5c1d5b6eb2f1f409
---

 po/sl.po |   42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/po/sl.po b/po/sl.po
index 03883cc..eab5032 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -6,7 +6,7 @@
 # Aljoša Žagar anthon.ma...@gmail.com, 2013
 # janezm.74, 2014
 # Damir Jerovšek jie...@windowslive.com, 2014
-# Martin Srebotnjak mi...@filmsi.net, 2013-2014
+# Martin Srebotnjak mi...@filmsi.net, 2013-2015
 # Matej Urbančič mat...@svn.gnome.org, 2005-2010, 2014-2015
 # Peter Klofutar, 2014-2015
 msgid 
@@ -14,8 +14,8 @@ msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2015-02-14 08:36+\n
-Last-Translator: Peter Klofutar\n
+PO-Revision-Date: 2015-04-03 15:53+\n
+Last-Translator: Martin Srebotnjak mi...@filmsi.net\n
 Language-Team: Slovenian (http://www.transifex.com/projects/p/vlc-trans/;
 language/sl/)\n
 Language: sl\n
@@ -6570,9 +6570,8 @@ msgid Layer C time interleaving
 msgstr Čas prepletanja plasti C
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Določilo omrežja
+msgstr Identifikator toka
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -8692,7 +8691,7 @@ msgstr Samodejni nadzor ojačanja barve.
 
 #: modules/access/v4l2/v4l2.c:127
 msgid Power line frequency
-msgstr 
+msgstr Frekvenca el. omrežja
 
 #: modules/access/v4l2/v4l2.c:129
 msgid Power line frequency anti-flicker filter.
@@ -12931,7 +12930,7 @@ msgstr 
 
 #: modules/codec/x264.c:94
 msgid Enable compatibility hacks for Blu-ray support
-msgstr 
+msgstr Omogoči združljivostne spremembe za podporo Blu-ray
 
 #: modules/codec/x264.c:95
 msgid 
@@ -13094,6 +13093,7 @@ msgstr Profil H.264
 #: modules/codec/x264.c:163
 msgid Specify H.264 profile which limits are enforced over other settings
 msgstr 
+Določite profil H.264, katerega meje imajo prednost pred drugimi nastavitvami
 
 #: modules/codec/x264.c:169
 msgid Interlaced mode
@@ -13692,7 +13692,7 @@ msgstr 
 
 #: modules/codec/x264.c:418
 msgid Default preset setting used
-msgstr 
+msgstr Privzeto uporabljena prednastavitev
 
 #: modules/codec/x264.c:420
 msgid x264 advanced options.
@@ -15440,7 +15440,7 @@ msgstr 
 
 #: modules/demux/mp4/id3genres.h:155
 msgid Acapella
-msgstr 
+msgstr A capella
 
 #: modules/demux/mp4/id3genres.h:156
 msgid Euro-House
@@ -20389,7 +20389,7 @@ msgstr Hitrost prenosa
 
 #: modules/gui/qt4/components/open_panels.cpp:1012
 msgid TV - analog
-msgstr 
+msgstr Analogni TV
 
 #: modules/gui/qt4/components/open_panels.cpp:1015
 msgid Device name
@@ -22237,7 +22237,7 @@ msgstr Algorittem razpletanja
 
 #: modules/hw/vdpau/chroma.c:856
 msgid Inverse telecine
-msgstr 
+msgstr Inverzni telekino
 
 #: modules/hw/vdpau/chroma.c:858
 msgid Deinterlace chroma skip
@@ -23143,9 +23143,8 @@ msgid LibNotify Notification Plugin
 msgstr LibNotify vstavek obveščanja
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Paketnik kopiranja
+msgstr 
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -27113,7 +27112,7 @@ msgstr Filter scen slike
 
 #: modules/video_filter/sepia.c:58
 msgid Sepia intensity
-msgstr 
+msgstr Intenzivnost sepia
 
 #: modules/video_filter/sepia.c:59
 msgid Intensity of sepia effect
@@ -27121,11 +27120,11 @@ msgstr 
 
 #: modules/video_filter/sepia.c:64
 msgid Sepia video filter
-msgstr 
+msgstr Video filter sepia
 
 #: modules/video_filter/sepia.c:66
 msgid Gives video a warmer tone by applying sepia effect
-msgstr 
+msgstr Poda sliki toplejši ton z uporabo učinka sepia
 
 #: modules/video_filter/sharpen.c:46
 msgid Sharpen strength (0-2)
@@ -27180,7 +27179,7 @@ msgstr Največje število podnapisov, ki se lahko 
istočasno prikažejo.
 
 #: modules/video_filter/subsdelay.c:60
 msgid Minimum alpha value
-msgstr 
+msgstr Najmanjša vrednost alfa
 
 #: modules/video_filter/subsdelay.c:62
 msgid 
@@ -28546,7 +28545,7 @@ msgstr Ime datoteke
 #: share/lua/http/dialogs/equalizer_window.html:49
 #: share/lua/http/mobile_equalizer.html:62
 msgid Preamp:
-msgstr 
+msgstr Predokrepitev:
 
 #: share/lua/http/dialogs/mosaic_window.html:104
 msgid Row border
@@ -29539,9 +29538,6 @@ msgstr ; 
 msgid Media Manager List
 msgstr Seznam upravljalnika predstavnih datotek
 
-#~ msgid Video acceleration not available
-#~ msgstr Pospeševanje videa ni na voljo
-
 #~ msgid 
 #~ The XVideo rendering acceleration driver does not support the required 
 #~ resolution of %ux%u pixels but %PRIu32x%PRIu32 pixels instead.\n
@@ -32798,6 +32794,10 @@ msgstr Seznam upravljalnika predstavnih datotek
 #~ msgstr SCTE-27
 
 

[vlc-commits] l10n: Swedish update

2015-04-11 Thread A. Regnander
vlc/vlc-2.2 | branch: master | A. Regnander anton_...@hotmail.com | Sat Apr 
11 12:29:52 2015 -0400| [61d6d5e5960c37bd93b361ec808e7f04f6ff5cdf] | committer: 
Christoph Miebach

l10n: Swedish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=61d6d5e5960c37bd93b361ec808e7f04f6ff5cdf
---

 po/sv.po |   19 ---
 1 file changed, 8 insertions(+), 11 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index a58ebcb..80a3681 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,7 +3,7 @@
 # This file is distributed under the same license as the VLC package.
 #
 # Translators:
-# Anton R anton_...@hotmail.com, 2014
+# Anton R anton_...@hotmail.com, 2014-2015
 # Daniel Nylander p...@danielnylander.se, 2006-2012
 # Daniel daniel.a.b...@telia.com, 2015
 # dotar t.do...@gmail.com, 2014
@@ -22,9 +22,8 @@ msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2015-01-31 16:03+\n
-Last-Translator: Kristoffer Grundström kristoffer.grundstrom1983@gmail.
-com\n
+PO-Revision-Date: 2015-04-02 11:48+\n
+Last-Translator: Anton R anton_...@hotmail.com\n
 Language-Team: Swedish (http://www.transifex.com/projects/p/vlc-trans/;
 language/sv/)\n
 Language: sv\n
@@ -4628,7 +4627,7 @@ msgstr Tar en videoskärmbild och skriver den till disk.
 #: modules/gui/qt4/components/controller.hpp:129 modules/gui/qt4/menus.cpp:849
 #: modules/stream_out/record.c:60
 msgid Record
-msgstr Inspelning
+msgstr Spela in
 
 #: src/libvlc-module.c:1381
 msgid Record access filter start/stop.
@@ -6512,9 +6511,8 @@ msgid Layer C time interleaving
 msgstr 
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Nätverksidentifierare
+msgstr 
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -22591,9 +22589,8 @@ msgid LibNotify Notification Plugin
 msgstr Notifieringsinsticksmodul för libnotify
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Kopiera paketerare
+msgstr 
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -24778,7 +24775,7 @@ msgstr Ändra kanaltilldelningar (fixar feldragna 
kablar)
 
 #: modules/video_filter/atmo/atmo.cpp:560
 msgid Adjust the white light to your LED stripes
-msgstr Justera det vita ljudet på dina LED-lampor
+msgstr Justera det vita ljuset på dina LED-lampor
 
 #: modules/video_filter/atmo/atmo.cpp:582
 msgid Change gradients
@@ -27154,7 +27151,7 @@ msgstr X11 fönster-ID
 
 #: modules/video_output/xcb/window.c:62
 msgid X window
-msgstr 
+msgstr X-fönster
 
 #: modules/video_output/xcb/window.c:63
 msgid X11 video window (XCB)

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Simplified Chinese update

2015-04-11 Thread Dean Lee
vlc/vlc-2.2 | branch: master | Dean Lee xslid...@gmail.com | Sat Apr 11 
12:36:42 2015 -0400| [6a5d754aa372e2ac15bcfff5dcf8ef6407e7c18f] | committer: 
Christoph Miebach

l10n: Simplified Chinese update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=6a5d754aa372e2ac15bcfff5dcf8ef6407e7c18f
---

 po/zh_CN.po |  544 ++-
 1 file changed, 274 insertions(+), 270 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=6a5d754aa372e2ac15bcfff5dcf8ef6407e7c18f
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Ukrainian update

2015-04-11 Thread Andriy Bandura
vlc/vlc-2.2 | branch: master | Andriy Bandura andriykopanyt...@gmail.com | 
Sat Apr 11 12:35:22 2015 -0400| [b09c3b495b3dd0a2d7f0d577ff05572eba7db345] | 
committer: Christoph Miebach

l10n: Ukrainian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=b09c3b495b3dd0a2d7f0d577ff05572eba7db345
---

 po/uk.po |   21 ++---
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/po/uk.po b/po/uk.po
index d8261d3..1f056d2 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -1,17 +1,17 @@
 # Ukrainian translation
-# Copyright (C) 2014 VideoLAN
+# Copyright (C) 2015 VideoLAN
 # This file is distributed under the same license as the VLC package.
 #
 # Translators:
 # Eugene Kutia foss...@gmail.com, 2013
 # Oleksandr Natalenko oleksa...@natalenko.name, 2009-2012
-# Андрій Бандура andriykopanyt...@gmail.com, 2013-2014
+# Андрій Бандура andriykopanyt...@gmail.com, 2013-2015
 msgid 
 msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2014-11-22 11:26+\n
+PO-Revision-Date: 2015-02-27 12:56+\n
 Last-Translator: Андрій Бандура andriykopanyt...@gmail.com\n
 Language-Team: Ukrainian (http://www.transifex.com/projects/p/vlc-trans/;
 language/uk/)\n
@@ -6584,9 +6584,8 @@ msgid Layer C time interleaving
 msgstr Час перемежування шару C
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Ідентифікатор мережі
+msgstr Ідентифікатор потоку
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -20877,7 +20876,7 @@ msgstr Цей міксер не входить до складу VLC: він м
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
-msgstr 
+msgstr Відсутній мультиплексор. Використання цього профілю зазнає невдачі.
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -23319,9 +23318,8 @@ msgid LibNotify Notification Plugin
 msgstr Модуль сповіщення LibNotify
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Пакетувальник копіюванням
+msgstr пакетувальник avparser
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -29740,9 +29738,6 @@ msgstr ; 
 msgid Media Manager List
 msgstr Список медіаменеджеру
 
-#~ msgid Video acceleration not available
-#~ msgstr Прискорення відео недоступне
-
 #~ msgid 
 #~ The XVideo rendering acceleration driver does not support the required 
 #~ resolution of %ux%u pixels but %PRIu32x%PRIu32 pixels instead.\n
@@ -29863,6 +29858,10 @@ msgstr Список медіаменеджеру
 #~ msgstr Журнал налагодження VLC (%s).rtf
 
 #, fuzzy
+#~ msgid Video acceleration not available
+#~ msgstr Відеовивід K Video Acceleration
+
+#, fuzzy
 #~ msgid Subtitle track added
 #~ msgstr Доріжка субтитрів
 

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Slovak update

2015-04-11 Thread Marián Hikaník
vlc/vlc-2.2 | branch: master | Marián Hikaník mhika...@users.sourceforge.net 
| Sat Apr 11 12:24:26 2015 -0400| [021d5dff6769b4be1b18a8aabca0ee3a6ff13b34] | 
committer: Christoph Miebach

l10n: Slovak update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=021d5dff6769b4be1b18a8aabca0ee3a6ff13b34
---

 po/sk.po |  426 +++---
 1 file changed, 216 insertions(+), 210 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=021d5dff6769b4be1b18a8aabca0ee3a6ff13b34
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Italian update

2015-04-11 Thread Vincenzo Reale
vlc/vlc-2.2 | branch: master | Vincenzo Reale smart2...@baslug.org | Sat Apr 
11 12:02:41 2015 -0400| [d843f9527ccc0df720422008d418bc6b943830f6] | committer: 
Christoph Miebach

l10n: Italian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=d843f9527ccc0df720422008d418bc6b943830f6
---

 po/it.po |   55 +++
 1 file changed, 39 insertions(+), 16 deletions(-)

diff --git a/po/it.po b/po/it.po
index f546447..37dc131 100644
--- a/po/it.po
+++ b/po/it.po
@@ -14,6 +14,7 @@
 # Francesco Marinucci fram...@opmbx.org, 2013
 # ghina90 inactive+ghin...@transifex.com, 2013
 # Guybrush88 erpi...@alice.it, 2014
+# Jacopo Tumminello tummarel...@gmail.com, 2015
 # lorenzo facca lorenzo.fa...@gmail.com, 2013-2014
 # Lorenzo Porta, 2013
 # thegladiator justthegladia...@gmail.com, 2014
@@ -31,13 +32,13 @@
 # sara.nocentini sara.nocent...@gmail.com, 2014
 # Marco Esposito antani...@yahoo.it, 2013
 # Veronica Di Giorgio verodigior...@gmail.com, 2013
-# Vincenzo Reale vinx.re...@gmail.com, 2014
+# Vincenzo Reale vinx.re...@gmail.com, 2014-2015
 msgid 
 msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2014-12-29 20:43+\n
+PO-Revision-Date: 2015-03-07 15:04+\n
 Last-Translator: Vincenzo Reale vinx.re...@gmail.com\n
 Language-Team: Italian (http://www.transifex.com/projects/p/vlc-trans/;
 language/it/)\n
@@ -150,7 +151,7 @@ msgstr Moduli d'uscita
 
 #: include/vlc_config_cat.h:65
 msgid General settings for audio output modules.
-msgstr Impostazioni generali per i moduli d'uscita audio.
+msgstr Impostazioni generali per i moduli di uscita audio.
 
 #: include/vlc_config_cat.h:67 src/libvlc-module.c:1953
 #: modules/gui/macosx/VideoEffects.m:83
@@ -6690,9 +6691,8 @@ msgid Layer C time interleaving
 msgstr Tempo di interleaving del lato C
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Identificatore di rete
+msgstr Identificatore del flusso
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -14062,19 +14062,19 @@ msgstr Codificatore H.264/MPEG-4 Part 10/AVC (x264 
10-bit)
 
 #: modules/codec/x264.c:455
 msgid H.262/MPEG-2 encoder (x262)
-msgstr Codificatore H.262/MPEG-2 (x262)
+msgstr Encoder H.262/MPEG-2 (x262)
 
 #: modules/codec/x264.c:459
 msgid H.264/MPEG-4 Part 10/AVC encoder (x264)
-msgstr Codificatore H.264/MPEG-4 Part 10/AVC (x264)
+msgstr Encoder H.264/MPEG-4 Part 10/AVC (x264)
 
 #: modules/codec/x265.c:45
 msgid H.265/HEVC encoder (x265)
-msgstr Codificatore H.265/HEVC (x265)
+msgstr Encoder H.265/HEVC (x265)
 
 #: modules/codec/xwd.c:36
 msgid XWD image decoder
-msgstr Decodificatore immagine XWD
+msgstr Decoder immagine XWD
 
 #: modules/codec/zvbi.c:61
 msgid Teletext page
@@ -17270,6 +17270,8 @@ msgid 
 Media encapsulated as %@ cannot be streamed through the HTTP protocol for 
 technical reasons.
 msgstr 
+Il media incapsulato come %@ non può essere trasmesso tramite il protocollo 
+HTTP per motivi tecnici.
 
 #: modules/gui/macosx/ConvertAndSave.m:370
 msgid Save as new profile
@@ -23541,9 +23543,8 @@ msgid LibNotify Notification Plugin
 msgstr Plugin di notifica Libnotify
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Copy packetizer
+msgstr Pacchettizzatore avparser
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -23682,6 +23683,9 @@ msgid 
 The SAP module normally chooses itself the right addresses to listen to. 
 However, you can specify a specific address.
 msgstr 
+Il modulo SAP, di norma, sceglie automaticamente gli indirizzi corretti sui 
+quali rimanere in ascolto. In ogni caso, puoi indicare un indirizzo 
+specifico.
 
 #: modules/services_discovery/sap.c:85
 msgid SAP timeout (seconds)
@@ -23691,6 +23695,8 @@ msgstr Timeout SAP (secondi)
 msgid 
 Delay after which SAP items get deleted if no new announcement is received.
 msgstr 
+Ritardo dopo il quale gli elementi SAP sono eliminati se non si riceve un 
+nuovo annuncio.
 
 #: modules/services_discovery/sap.c:89
 msgid Try to parse the announce
@@ -26398,6 +26404,8 @@ msgid 
 Gaussian's standard deviation. The blurring will take into account pixels up 
 to 3*sigma away in any direction.
 msgstr 
+Deviazione standard gaussiana. La sfocatura prenderà in considerazione i 
+pixel fino a 3*sigma in ogni direzione.
 
 #: modules/video_filter/gaussianblur.c:52
 msgid Add a blurring effect
@@ -27062,6 +27070,7 @@ msgstr Nome del plugin OpenCV interno da usare
 #: modules/video_filter/posterize.c:61
 msgid Posterize level (number of colors is cube of this value)
 msgstr 
+Livello di posterizzazione (il numero di colori è il cubo di questo valore)
 
 #: modules/video_filter/posterize.c:67
 msgid Posterize video filter
@@ -27487,6 +27496,8 @@ msgid 
 Directory path where images files should be saved. If not set, then images 
 will be 

[vlc-commits] l10n: Macedonian update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
12:07:32 2015 -0400| [bc73d2eb1e3505f26b91a69c4316c16557656a3b] | committer: 
Christoph Miebach

l10n: Macedonian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=bc73d2eb1e3505f26b91a69c4316c16557656a3b
---

 po/mk.po | 1753 +++---
 1 file changed, 647 insertions(+), 1106 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=bc73d2eb1e3505f26b91a69c4316c16557656a3b
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Portuguese update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
12:22:26 2015 -0400| [a9446080b8cb3d96aeb82f3bcf49b8eed4217d19] | committer: 
Christoph Miebach

l10n: Portuguese update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=a9446080b8cb3d96aeb82f3bcf49b8eed4217d19
---

 po/pt_PT.po | 4048 +--
 1 file changed, 2009 insertions(+), 2039 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=a9446080b8cb3d96aeb82f3bcf49b8eed4217d19
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Spanish update

2015-04-11 Thread David González
vlc/vlc-2.2 | branch: master | David González pico@gmail.com | Sat Apr 11 
11:44:32 2015 -0400| [360adae98b47e1d52513ad231a22d3105f2ac17c] | committer: 
Christoph Miebach

l10n: Spanish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=360adae98b47e1d52513ad231a22d3105f2ac17c
---

 po/es.po |   51 +--
 1 file changed, 25 insertions(+), 26 deletions(-)

diff --git a/po/es.po b/po/es.po
index d54903b..429bb2d 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,11 +1,10 @@
 # Spanish translation
-# Copyright (C) 2014 VideoLAN
+# Copyright (C) 2015 VideoLAN
 # This file is distributed under the same license as the VLC package.
 #
 # Translators:
 # Alvaro Sáez as...@asaez.eu, 2013
 # Chema jom...@telefonica.net, 2014
-# David González pico@gmail.com, 2014
 # alberto cyko...@gmail.com, 2013
 # estebande estebandele...@hotmail.com, 2013
 # Chema jom...@telefonica.net, 2013
@@ -13,6 +12,7 @@
 # Juan Diego Fernández Rosado juandiegofernandezros...@gmail.com, 2014
 # Konrad Iturbe m...@chernowii.com, 2013
 # Marc Sokolovitch sokolovi...@yahoo.com, 2013
+# picodotdev pico@gmail.com, 2014-2015
 # Sam Askari saska...@gmail.com, 2013
 # saulortega saulortega...@gmail.com, 2013
 # Yllelder, 2013
@@ -21,7 +21,7 @@ msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2014-11-22 17:39+\n
+PO-Revision-Date: 2015-02-27 09:57+\n
 Last-Translator: picodotdev pico@gmail.com\n
 Language-Team: Spanish (http://www.transifex.com/projects/p/vlc-trans/;
 language/es/)\n
@@ -6650,9 +6650,8 @@ msgid Layer C time interleaving
 msgstr Entrelazado de tiempo de capa C
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Identificador de red
+msgstr Identificador de emisión
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -20986,7 +20985,7 @@ msgstr 
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
-msgstr 
+msgstr El muxer no se encuentra. Usando ester perfil fallará
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -23445,9 +23444,8 @@ msgid LibNotify Notification Plugin
 msgstr Complemento de notificación LibNotify
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Copiar empaquetador
+msgstr Empaquetador avparser
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -29922,9 +29920,6 @@ msgstr ; 
 msgid Media Manager List
 msgstr Lista del administrador multimedia
 
-#~ msgid Video acceleration not available
-#~ msgstr Aceleración de vídeo no disponible
-
 #~ msgid 
 #~ The XVideo rendering acceleration driver does not support the required 
 #~ resolution of %ux%u pixels but %PRIu32x%PRIu32 pixels instead.\n
@@ -34480,6 +34475,24 @@ msgstr Lista del administrador multimedia
 #~ msgstr Seleccionar una identidad coincidente
 
 #, fuzzy
+#~ msgid 
+#~ Your video output acceleration driver does not support the required 
+#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
+#~ %PRIu32.\n
+#~ Video output acceleration will be disabled. However, rendering videos 
+#~ with overly large resolution may cause severe performance degration.
+#~ msgstr 
+#~ La controladora de aceleración de renderizado XVideo no soporta la 
+#~ resolución requerida de %ux%u pixeles pero %PRIu32x%PRIu32 pixels en 
+#~ su lugar.\n
+#~ La aceleración así estará deshabilitada. El rendimiento se degradará 
+#~ severamente si la resolución es alta.
+
+#, fuzzy
+#~ msgid Video acceleration not available
+#~ msgstr Salida de aceleración de vídeo K
+
+#, fuzzy
 #~ msgid Subtitle track added
 #~ msgstr Pista de subtítulos
 
@@ -34974,20 +34987,6 @@ msgstr Lista del administrador multimedia
 #~ msgstr Occitano; Provenzal
 
 #, fuzzy
-#~ msgid 
-#~ Your video output acceleration driver does not support the required 
-#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
-#~ %PRIu32.\n
-#~ Video output acceleration will be disabled. However, rendering videos 
-#~ with overly large resolution may cause severe performance degration.
-#~ msgstr 
-#~ La controladora de aceleración de renderizado XVideo no soporta la 
-#~ resolución requerida de %ux%u pixeles pero %PRIu32x%PRIu32 pixels en 
-#~ su lugar.\n
-#~ La aceleración así estará deshabilitada. El rendimiento se degradará 
-#~ severamente si la resolución es alta.
-
-#, fuzzy
 #~ msgid Subtitles/OSD
 #~ msgstr Subtítulos / OSD
 
@@ -41549,7 +41548,7 @@ msgstr Lista del administrador multimedia
 
 #, fuzzy
 #~ msgid SLP attribute identifiers
-#~ msgstr Identificador de red
+#~ msgstr Identificador de emisión
 
 #, fuzzy
 #~ msgid SLP input

___
vlc-commits mailing list
vlc-commits@videolan.org

[vlc-commits] l10n: Japanese update

2015-04-11 Thread Fumio Nakayama
vlc/vlc-2.2 | branch: master | Fumio Nakayama fumio@gmail.com | Sat Apr 
11 12:03:32 2015 -0400| [afb0825f919ad9297ea456cdeeb8f7f60d943f05] | committer: 
Christoph Miebach

l10n: Japanese update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=afb0825f919ad9297ea456cdeeb8f7f60d943f05
---

 po/ja.po |   47 +++
 1 file changed, 23 insertions(+), 24 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index bfabf6b..e11be74 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the VLC package.
 #
 # Translators:
-# Fumio Nakayama fumio@gmail.com, 2002,2009-2014
+# Fumio Nakayama fumio@gmail.com, 2002,2009-2015
 # Tadashi Jokagi e...@elf.no-ip.org, 2004-2009
 msgid 
 msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2014-12-07 11:18+\n
+PO-Revision-Date: 2015-02-27 12:30+\n
 Last-Translator: Fumio Nakayama fumio@gmail.com\n
 Language-Team: Japanese (http://www.transifex.com/projects/p/vlc-trans/;
 language/ja/)\n
@@ -6526,9 +6526,8 @@ msgid Layer C time interleaving
 msgstr レイヤー C タイムインターリーブ
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr ネットワーク識別子
+msgstr ストリーム識別子
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -20729,7 +20728,7 @@ msgstr このマルチプレクサはVLCから提供されていません: 見
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
-msgstr 
+msgstr このマルチプレクサーがないため、このプロファイルは失敗しました。
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -23182,9 +23181,8 @@ msgid LibNotify Notification Plugin
 msgstr LibNotify通知プラグイン
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr コピーのパケッタイザー
+msgstr AVパーサーパケッタイザー
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -29584,9 +29582,6 @@ msgstr ; 
 msgid Media Manager List
 msgstr メディアマネージャーリスト
 
-#~ msgid Video acceleration not available
-#~ msgstr ビデオアクセラレーションは有効ではありません
-
 #~ msgid 
 #~ The XVideo rendering acceleration driver does not support the required 
 #~ resolution of %ux%u pixels but %PRIu32x%PRIu32 pixels instead.\n
@@ -31863,6 +31858,24 @@ msgstr メディアマネージャーリスト
 #~ msgstr VLCデバッグログ(%s).rtf
 
 #, fuzzy
+#~ msgid 
+#~ Your video output acceleration driver does not support the required 
+#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
+#~ %PRIu32.\n
+#~ Video output acceleration will be disabled. However, rendering videos 
+#~ with overly large resolution may cause severe performance degration.
+#~ msgstr 
+#~ XVideoレンダリングアクセラレーションドライバーは要求された解像度 %ux%u ピ
+#~ クセルをサポートしていません。%PRIu32x%PRIu32 ピクセルを使用してくださ
+#~ い。\n
+#~ アクセラレーションは無効化されます。解像度が高い場合性能が劣化することがあ
+#~ ります。
+
+#, fuzzy
+#~ msgid Video acceleration not available
+#~ msgstr Kビデオアクセラレーションビデオ出力
+
+#, fuzzy
 #~ msgid Subtitle track added
 #~ msgstr 字幕トラック
 
@@ -33986,20 +33999,6 @@ msgstr メディアマネージャーリスト
 #~ msgstr 字幕とOSDの合成にハードウェアアクセラレーションの使用を試みます。
 
 #, fuzzy
-#~ msgid 
-#~ Your video output acceleration driver does not support the required 
-#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
-#~ %PRIu32.\n
-#~ Video output acceleration will be disabled. However, rendering videos 
-#~ with overly large resolution may cause severe performance degration.
-#~ msgstr 
-#~ XVideoレンダリングアクセラレーションドライバーは要求された解像度 %ux%u ピ
-#~ クセルをサポートしていません。%PRIu32x%PRIu32 ピクセルを使用してくださ
-#~ い。\n
-#~ アクセラレーションは無効化されます。解像度が高い場合性能が劣化することがあ
-#~ ります。
-
-#, fuzzy
 #~ msgid Stream Name
 #~ msgstr ストリーム名
 

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Norwegian Bokmål update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
12:11:47 2015 -0400| [8a60a6535ca146241c3f6b22eb6b87d75d74f7cd] | committer: 
Christoph Miebach

l10n: Norwegian Bokmål update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=8a60a6535ca146241c3f6b22eb6b87d75d74f7cd
---

 po/nb.po |  298 +++---
 1 file changed, 129 insertions(+), 169 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=8a60a6535ca146241c3f6b22eb6b87d75d74f7cd
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: French update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
11:56:19 2015 -0400| [890cbd6a59b464711542a0c70d422ff3fd741d0e] | committer: 
Christoph Miebach

l10n: French update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=890cbd6a59b464711542a0c70d422ff3fd741d0e
---

 po/fr.po |  410 --
 1 file changed, 213 insertions(+), 197 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=890cbd6a59b464711542a0c70d422ff3fd741d0e
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Malay update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
12:09:16 2015 -0400| [8b0b9d87f0e373d64e637ab640fcaf6d9b0157c6] | committer: 
Christoph Miebach

l10n: Malay update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=8b0b9d87f0e373d64e637ab640fcaf6d9b0157c6
---

 po/ms.po |   23 +++
 1 file changed, 11 insertions(+), 12 deletions(-)

diff --git a/po/ms.po b/po/ms.po
index e67999e..c4f0c3d 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -1,17 +1,17 @@
 # Malay translation
-# Copyright (C) 2014 VideoLAN
+# Copyright (C) 2015 VideoLAN
 # This file is distributed under the same license as the VLC package.
 #
 # Translators:
-# abuyop abu...@gmail.com, 2013-2014
+# abuyop abu...@gmail.com, 2013-2015
 # Mahrazi Mohd Kamal mahr...@gmail.com, 2006,2013-2014
 msgid 
 msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2014-11-29 03:16+\n
-Last-Translator: abuyop abu...@gmail.com\n
+PO-Revision-Date: 2015-03-10 10:40+\n
+Last-Translator: Mahrazi Mohd Kamal mahr...@gmail.com\n
 Language-Team: Malay (http://www.transifex.com/projects/p/vlc-trans/language/;
 ms/)\n
 Language: ms\n
@@ -6549,9 +6549,8 @@ msgid Layer C time interleaving
 msgstr Pengantaralembaran masa lapisan C
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Pengenal rangkaian
+msgstr Pengecam strim
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -20769,7 +20768,7 @@ msgstr Muxer ini tidak disediakan oleh VLC: Ia mungkin 
hilang.
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
-msgstr 
+msgstr Muxer ini hilang. Penggunaan profil ini akan mengalami kegagalan
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -23214,9 +23213,8 @@ msgid LibNotify Notification Plugin
 msgstr Plugin Pemberitahuan LibNotify
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Salin packetizer
+msgstr pempaket avparser
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -29629,9 +29627,6 @@ msgstr ; 
 msgid Media Manager List
 msgstr Senarai Pengurus Media
 
-#~ msgid Video acceleration not available
-#~ msgstr Pecut video tidak ada
-
 #~ msgid 
 #~ The XVideo rendering acceleration driver does not support the required 
 #~ resolution of %ux%u pixels but %PRIu32x%PRIu32 pixels instead.\n
@@ -32896,6 +32891,10 @@ msgstr Senarai Pengurus Media
 #~ msgstr Log Nyahpepijat VLC (%s).rtf
 
 #, fuzzy
+#~ msgid Video acceleration not available
+#~ msgstr Output video Pemecutan K Video
+
+#, fuzzy
 #~ msgid Subtitle track added
 #~ msgstr Trek sarikata
 

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Catalan update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
11:30:58 2015 -0400| [4a2f4bb4206c24d5e7ba721e487a47fc58d6f59f] | committer: 
Christoph Miebach

l10n: Catalan update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=4a2f4bb4206c24d5e7ba721e487a47fc58d6f59f
---

 po/ca.po |  139 +++---
 1 file changed, 70 insertions(+), 69 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=4a2f4bb4206c24d5e7ba721e487a47fc58d6f59f
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Modern Greek update

2015-04-11 Thread Savvas Nesseris
vlc/vlc-2.2 | branch: master | Savvas Nesseris 
modernphilosopher82-2...@yahoo.com | Sat Apr 11 11:39:04 2015 -0400| 
[b2d10976b25f707ea0321c855d9f75d51d510600] | committer: Christoph Miebach

l10n: Modern Greek update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=b2d10976b25f707ea0321c855d9f75d51d510600
---

 po/el.po |   23 +++
 1 file changed, 11 insertions(+), 12 deletions(-)

diff --git a/po/el.po b/po/el.po
index c5ea3f4..7a77857 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,5 +1,5 @@
 # Modern Greek translation
-# Copyright (C) 2014 VideoLAN
+# Copyright (C) 2015 VideoLAN
 # This file is distributed under the same license as the VLC package.
 #
 # Translators:
@@ -7,15 +7,15 @@
 # firespin dartworl...@hotmail.com, 2014
 # Pontikis Ioannis johnponti...@yahoo.gr, 2013
 # melmel p_...@windowslive.com, 2014
-# Savvas Nesseris modernphilosopher82-2...@yahoo.com, 2014
+# Savvas Nesseris nesse...@yahoo.com, 2014-2015
 # Simos Xenitellis simo...@gmx.net, 2005,2010
 msgid 
 msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2014-11-23 17:52+\n
-Last-Translator: Savvas Nesseris modernphilosopher82-2...@yahoo.com\n
+PO-Revision-Date: 2015-02-27 19:37+\n
+Last-Translator: Savvas Nesseris nesse...@yahoo.com\n
 Language-Team: Greek (http://www.transifex.com/projects/p/vlc-trans/language/;
 el/)\n
 Language: el\n
@@ -6761,9 +6761,8 @@ msgid Layer C time interleaving
 msgstr Εναλλαγή χρόνου στρώματος C
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Αναγνωριστικό δικτύου
+msgstr Αναγνωριστικό ροής
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -21304,7 +21303,7 @@ msgstr Ο πολυπλέκτης δεν παρέχεται άμεσα από τ
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
-msgstr 
+msgstr Ο πολυπλέκτης λείπει. Η χρήση αυτού του προφίλ θα αποτύχει
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -23801,9 +23800,8 @@ msgid LibNotify Notification Plugin
 msgstr Εμφύτευμα ειδοποίησης LibNotify
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Αντιγραφή πακετοποιητή
+msgstr πακετοποιητής avparser 
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -30408,9 +30406,6 @@ msgstr ;
 msgid Media Manager List
 msgstr Λίστα διαχειριστή πολυμέσων
 
-#~ msgid Video acceleration not available
-#~ msgstr Η επιτάχυνση του βίντεο δεν είναι διαθέσιμη
-
 #~ msgid 
 #~ The XVideo rendering acceleration driver does not support the required 
 #~ resolution of %ux%u pixels but %PRIu32x%PRIu32 pixels instead.\n
@@ -33520,6 +33515,10 @@ msgstr Λίστα διαχειριστή πολυμέσων
 #~ msgstr Επιλογή μιας ταιριαστής ταυτότητας
 
 #, fuzzy
+#~ msgid Video acceleration not available
+#~ msgstr Έξοδος βίντεο επιτάχυνσης K Video
+
+#, fuzzy
 #~ msgid Subtitle track added
 #~ msgstr Κομμάτι υπότιτλου
 

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Scottish Gaelic update

2015-04-11 Thread Michael Bauer
vlc/vlc-2.2 | branch: master | Michael Bauer f...@akerbeltz.org | Sat Apr 11 
11:57:29 2015 -0400| [78ea5e98bb0a75442b361b54879388af9d9d66d6] | committer: 
Christoph Miebach

l10n: Scottish Gaelic update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=78ea5e98bb0a75442b361b54879388af9d9d66d6
---

 po/gd.po |  176 ++
 1 file changed, 75 insertions(+), 101 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=78ea5e98bb0a75442b361b54879388af9d9d66d6
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Latvian update

2015-04-11 Thread Ingmārs Dīriņš
vlc/vlc-2.2 | branch: master | Ingmārs Dīriņš melhior...@gmail.com | Sat Apr 
11 12:06:23 2015 -0400| [1597ee3a2e1bd21ec3b0ea6845af65e537488f3e] | committer: 
Christoph Miebach

l10n: Latvian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=1597ee3a2e1bd21ec3b0ea6845af65e537488f3e
---

 po/lv.po |   58 --
 1 file changed, 28 insertions(+), 30 deletions(-)

diff --git a/po/lv.po b/po/lv.po
index e2f5e47..279dd33 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -13,7 +13,7 @@ msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2015-02-04 10:59+\n
+PO-Revision-Date: 2015-03-08 11:58+\n
 Last-Translator: Ingmārs Dīriņš melhior...@gmail.com\n
 Language-Team: Latvian (http://www.transifex.com/projects/p/vlc-trans/;
 language/lv/)\n
@@ -174,13 +174,13 @@ msgstr Video filtri tiek lietoti, lai apstrādātu video 
straumi.
 
 #: include/vlc_config_cat.h:82
 msgid Subtitles / OSD
-msgstr Subtitri / ekrāna norādījumi (OSD)
+msgstr Subtitri / ekrāna displejs (OSD)
 
 #: include/vlc_config_cat.h:83
 msgid 
 Settings related to On-Screen-Display, subtitles and \overlay subpictures\
 msgstr 
-Iestatījumi, kas saistīti ar ekrāna norādījumiem, subtitriem un \pārklājuma 
+Iestatījumi, kas saistīti ar ekrāna displeju, subtitriem un \pārklājuma 
 apakšbildēm\.
 
 #: include/vlc_config_cat.h:91
@@ -3005,15 +3005,15 @@ msgstr Jūs varat pilnībā atspējot apakšbilžu 
apstrādāšanu.
 #: modules/stream_out/transcode/transcode.c:212
 #: modules/gui/qt4/ui/sprefs_subtitles.h:290
 msgid On Screen Display
-msgstr Ekrāna norādījumi (OSD)
+msgstr Ekrāna displejs (OSD)
 
 #: src/libvlc-module.c:708
 msgid 
 VLC can display messages on the video. This is called OSD (On Screen 
 Display).
 msgstr 
-VLC var attēlot ziņojumus uz video. Šis tiek saukts par ekrāna norādījumiem 
-(On Screen Display).
+VLC var attēlot ziņojumus uz video. Šis tiek saukts par ekrāna displeju (On 
+Screen Display).
 
 #: src/libvlc-module.c:711
 msgid Text rendering module
@@ -6588,9 +6588,8 @@ msgid Layer C time interleaving
 msgstr Slāņa C laika mijiedarbība
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Tīkla identifikators
+msgstr Straumes identifikators
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -8261,7 +8260,7 @@ msgstr Ekrāna indekss
 
 #: modules/access/screen/screen.c:84
 msgid Index of screen (1, 2, 3, ...). Alternative to Display ID.
-msgstr Ekrāna indekss (1, 2, 3, ...). Alternatīvs Displeja ID.
+msgstr Ekrāna indekss (1, 2, 3, ...). Alternatīva Displeja ID.
 
 #: modules/access/screen/screen.c:97
 msgid Screen Input
@@ -16423,8 +16422,8 @@ msgstr 
 pVLC mediju atskaņotājs ir brīvā un atvērtā koda mediju atskaņotājs, 
 iekodētājs un straumētājs, kuru veidojuši brīvprātīgie no a href=\http://;
 www.videolan.org/\span style=\ text-decoration: underline; color:#0057ae;
-\VideoLAN/span/a kopienas./ppVLC lieto tā iekšējos kodekus, strādā 
-uz būtībā jebkuras populāras platformas, un var nolasīt gandrīz visas 
+\VideoLAN/span/a kopienas./ppVLC lieto savus iekšējos kodekus, 
+strādā uz būtībā jebkuras populāras platformas, un var nolasīt gandrīz visas 
 datnes, CD, DVD, tīkla straumes, tveršanas kartes un citus mediju formātus!/
 ppa href=\http://www.videolan.org/contribute/\;span style=\ text-
 decoration: underline; color:#0057ae;\Palīdzi un pievienojies mums!/
@@ -18423,7 +18422,7 @@ msgstr Video iestatījumi
 #: modules/gui/qt4/components/simple_preferences.cpp:294
 #: modules/gui/qt4/components/simple_preferences.cpp:873
 msgid Subtitle  On Screen Display Settings
-msgstr Subtitru un ekrāna norādījumu iestatījumi
+msgstr Subtitru un ekrāna displeja iestatījumi
 
 #: modules/gui/macosx/simple_prefs.m:296
 msgid Input  Codec Settings
@@ -18591,7 +18590,7 @@ msgstr Vēlamā subtitru valoda
 
 #: modules/gui/macosx/simple_prefs.m:406
 msgid Enable OSD
-msgstr Iespējot ekrāna norādījumus (OSD)
+msgstr Iespējot ekrāna displeju (OSD)
 
 #: modules/gui/macosx/simple_prefs.m:407 modules/text_renderer/win32text.c:66
 #: modules/video_filter/marq.c:107 modules/video_filter/rss.c:146
@@ -20847,7 +20846,7 @@ msgstr Šis muksētājs nav sniegts tieši no VLC: Tas 
varētu būt trūkstošs
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
-msgstr 
+msgstr Šis muksētājs ir trūkstošs. Šī profila lietošana neizdosies
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -23291,9 +23290,8 @@ msgid LibNotify Notification Plugin
 msgstr LibNotify paziņošanas spraudnis
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Kopēšanas paketizētājs
+msgstr avparser paketizētājs
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -24565,13 +24563,12 @@ msgstr 
 
 #: 

[vlc-commits] l10n: Russian update

2015-04-11 Thread Alexander Lakhin
vlc/vlc-2.2 | branch: master | Alexander Lakhin exclus...@gmail.com | Sat Apr 
11 12:23:24 2015 -0400| [8ca94c0e5d0f0d88b7cbb7971759c70c2f06f1e9] | committer: 
Christoph Miebach

l10n: Russian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=8ca94c0e5d0f0d88b7cbb7971759c70c2f06f1e9
---

 po/ru.po |   43 +--
 1 file changed, 21 insertions(+), 22 deletions(-)

diff --git a/po/ru.po b/po/ru.po
index 39bd7a7..5537591 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -14,7 +14,7 @@ msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2015-01-09 15:54+\n
+PO-Revision-Date: 2015-03-14 05:04+\n
 Last-Translator: Alexander Lakhin exclus...@gmail.com\n
 Language-Team: Russian (http://www.transifex.com/projects/p/vlc-trans/;
 language/ru/)\n
@@ -6561,9 +6561,8 @@ msgid Layer C time interleaving
 msgstr Перемежение в слое C
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Идентификатор сети
+msgstr Идентификатор потока
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -20815,7 +20814,7 @@ msgstr Этот миксер не входит в состав VLC: он мож
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
-msgstr 
+msgstr Мультиплексор отсутствует. Использовать этот профиль нельзя.
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -23251,9 +23250,8 @@ msgid LibNotify Notification Plugin
 msgstr Модуль уведомления LibNotify
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Упаковщик копированием
+msgstr Упаковщик avparser
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -29671,9 +29669,6 @@ msgstr ; 
 msgid Media Manager List
 msgstr Список настроек медиаменеджера
 
-#~ msgid Video acceleration not available
-#~ msgstr Ускорение видео не поддерживается
-
 #~ msgid 
 #~ The XVideo rendering acceleration driver does not support the required 
 #~ resolution of %ux%u pixels but %PRIu32x%PRIu32 pixels instead.\n
@@ -31981,6 +31976,23 @@ msgstr Список настроек медиаменеджера
 #~ msgstr Отладочные сообщения VLC (%s).rtf
 
 #, fuzzy
+#~ msgid 
+#~ Your video output acceleration driver does not support the required 
+#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
+#~ %PRIu32.\n
+#~ Video output acceleration will be disabled. However, rendering videos 
+#~ with overly large resolution may cause severe performance degration.
+#~ msgstr 
+#~ Ваш драйвер ускорения вывода XVideo не поддерживает требуемое разрешение: 
+#~ %ux%u пикселов. Максимально возможное разрешение: %PRIu32x%PRIu32.\n
+#~ Ускорение видеовывода будет отключено. При воспроизведении видео с 
+#~ большим разрешением может наблюдаться замедление.
+
+#, fuzzy
+#~ msgid Video acceleration not available
+#~ msgstr Вывод видео через K Video Acceleration
+
+#, fuzzy
 #~ msgid Subtitle track added
 #~ msgstr Дорожка субтитров
 
@@ -34106,19 +34118,6 @@ msgstr Список настроек медиаменеджера
 #~ Попытаться использовать аппаратное ускорение для наложения субтитров/OSD.
 
 #, fuzzy
-#~ msgid 
-#~ Your video output acceleration driver does not support the required 
-#~ resolution: %ux%u pixels. The maximum supported resolution is %PRIu32x
-#~ %PRIu32.\n
-#~ Video output acceleration will be disabled. However, rendering videos 
-#~ with overly large resolution may cause severe performance degration.
-#~ msgstr 
-#~ Ваш драйвер ускорения вывода XVideo не поддерживает требуемое разрешение: 
-#~ %ux%u пикселов. Максимально возможное разрешение: %PRIu32x%PRIu32.\n
-#~ Ускорение видеовывода будет отключено. При воспроизведении видео с 
-#~ большим разрешением может наблюдаться замедление.
-
-#, fuzzy
 #~ msgid Stream Name
 #~ msgstr Имя потока
 

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Dutch update

2015-04-11 Thread Thomas De Rocker
vlc/vlc-2.2 | branch: master | Thomas De Rocker thomasderoc...@hotmail.com | 
Sat Apr 11 12:13:04 2015 -0400| [34e9bf2a4f8f94951c53fbf12111c0a3f0b28151] | 
committer: Christoph Miebach

l10n: Dutch update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=34e9bf2a4f8f94951c53fbf12111c0a3f0b28151
---

 po/nl.po |   69 +++---
 1 file changed, 34 insertions(+), 35 deletions(-)

diff --git a/po/nl.po b/po/nl.po
index 6d68040..03070a4 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,18 +1,18 @@
 # Dutch translation
-# Copyright (C) 2014 VideoLAN
+# Copyright (C) 2015 VideoLAN
 # This file is distributed under the same license as the VLC package.
 #
 # Translators:
 # Alexander Henket ahenket at xs4all dot nl, 2009
 # Derk-Jan Hartman hartman at videolan dot org, 2004-2005
 # Myckel Habets myckel at sdf dot lonestar dot org, 2007-2010
-# Thomas De Rocker, 2008-2014
+# Thomas De Rocker, 2008-2015
 msgid 
 msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2014-11-22 18:32+\n
+PO-Revision-Date: 2015-03-25 14:53+\n
 Last-Translator: Thomas De Rocker\n
 Language-Team: Dutch (http://www.transifex.com/projects/p/vlc-trans/language/;
 nl/)\n
@@ -1101,7 +1101,7 @@ msgstr Page Up
 #: modules/gui/macosx/MainMenu.m:1316 modules/gui/macosx/MainMenu.m:1317
 #: modules/gui/qt4/menus.cpp:823
 msgid Pause
-msgstr Pause
+msgstr Pauzeren
 
 #: src/config/keys.c:112
 msgid Print
@@ -3893,7 +3893,7 @@ msgstr Afspelen en pauzeren
 
 #: src/libvlc-module.c:1145
 msgid Pause each item in the playlist on the last frame.
-msgstr Pauzeer iedere ingang in de afspeellijst op het laatste beeld.
+msgstr Elk item in de afspeellijst pauzeren op het laatste beeld.
 
 #: src/libvlc-module.c:1147
 msgid Auto start
@@ -6613,9 +6613,8 @@ msgid Layer C time interleaving
 msgstr Layer C time interleaving
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Netwerkidentificatie
+msgstr Stream-identificator
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -17427,13 +17426,13 @@ msgstr 
 
 #: modules/gui/macosx/macosx.m:104 modules/gui/qt4/qt4.cpp:180
 msgid Allow automatic icon changes
-msgstr Automatische icoon-wijzigingen toestaan
+msgstr Automatische pictogramwijzigingen toestaan
 
 #: modules/gui/macosx/macosx.m:105 modules/gui/qt4/qt4.cpp:182
 msgid 
 This option allows the interface to change its icon on various occasions.
 msgstr 
-Deze optie staat toe dat het icoon van de interface in verschillende 
+Deze optie staat toe dat het pictogram van de interface in verschillende 
 gevallen wijzigt.
 
 #: modules/gui/macosx/macosx.m:107 modules/gui/macosx/MainMenu.m:1431
@@ -19852,7 +19851,7 @@ msgstr  s  Stoppen
 
 #: modules/gui/ncurses.c:892
 msgid  spacePause/Play
-msgstr  spatiePauze/Afspelen
+msgstr  spatiePauzeren/afspelen
 
 #: modules/gui/ncurses.c:893
 msgid  f  Toggle Fullscreen
@@ -20940,7 +20939,7 @@ msgstr Deze muxer wordt niet direct voorzien door VLC: 
hij kan ontbreken.
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
-msgstr 
+msgstr De muxer ontbreekt. Gebruik van dit profiel zal mislukken
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -22122,23 +22121,23 @@ msgstr 
 
 #: modules/gui/qt4/qt4.cpp:83 modules/gui/skins2/src/skin_main.cpp:471
 msgid Systray icon
-msgstr Systeemvak-icoon
+msgstr Systeemvak-pictogram
 
 #: modules/gui/qt4/qt4.cpp:84
 msgid 
 Show an icon in the systray allowing you to control VLC media player for 
 basic actions.
 msgstr 
-Icoon in het systeemvak weergeven, waarmee u VLC met basisacties kunt 
+Pictogram in het systeemvak weergeven, waarmee u VLC met basisacties kunt 
 besturen.
 
 #: modules/gui/qt4/qt4.cpp:88
 msgid Start VLC with only a systray icon
-msgstr VLC starten met alleen een icoon in het systeemvak
+msgstr VLC starten met alleen een pictogram in het systeemvak
 
 #: modules/gui/qt4/qt4.cpp:89
 msgid VLC will start with just an icon in your taskbar
-msgstr VLC zal alleen met een icoon in de taakbalk starten
+msgstr VLC zal starten met alleen een pictogram in de taakbalk
 
 #: modules/gui/qt4/qt4.cpp:98
 msgid Show playing item name in window title
@@ -22397,7 +22396,7 @@ msgstr 
 
 #: modules/gui/skins2/src/skin_main.cpp:472
 msgid Show a systray icon for VLC
-msgstr Systeemvak-icoon weergeven voor VLC
+msgstr Systeemvak-pictogram weergeven voor VLC
 
 #: modules/gui/skins2/src/skin_main.cpp:473
 #: modules/gui/skins2/src/skin_main.cpp:474
@@ -23392,9 +23391,8 @@ msgid LibNotify Notification Plugin
 msgstr LibNotify Meldingsplugin
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Copy packetizer
+msgstr 

[vlc-commits] l10n: Norwegian Nynorsk update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
12:18:01 2015 -0400| [7fb248f4c26afee27fcc34ccc58c673ac91204cc] | committer: 
Christoph Miebach

l10n: Norwegian Nynorsk update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=7fb248f4c26afee27fcc34ccc58c673ac91204cc
---

 po/nn.po |17428 ++
 1 file changed, 7145 insertions(+), 10283 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=7fb248f4c26afee27fcc34ccc58c673ac91204cc
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Albanian update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
12:26:39 2015 -0400| [a1c1b397d1ab9fc07a9175c9d6a2fceca8039ad6] | committer: 
Christoph Miebach

l10n: Albanian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=a1c1b397d1ab9fc07a9175c9d6a2fceca8039ad6
---

 po/sq.po |  425 ++
 1 file changed, 177 insertions(+), 248 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=a1c1b397d1ab9fc07a9175c9d6a2fceca8039ad6
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Serbian update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
12:28:16 2015 -0400| [82cce9005c53b861a7d563f0e4a1979b88ca8701] | committer: 
Christoph Miebach

l10n: Serbian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=82cce9005c53b861a7d563f0e4a1979b88ca8701
---

 po/sr.po |   16 +++-
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/po/sr.po b/po/sr.po
index 3436dd0..6cca5a5 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,5 +1,5 @@
 # Serbian translation
-# Copyright (C) 2014 VideoLAN
+# Copyright (C) 2015 VideoLAN
 # This file is distributed under the same license as the VLC package.
 #
 # Translators:
@@ -9,14 +9,14 @@
 # Marko Uskokoddic , 2007
 # Marko Uskokovic uskoko...@etf.bg.ac.yu, 2007-2008
 # Milan Tair milan.t...@gmail.com, 2014
-# Предраг Љубеновић predragljubeno...@gmail.com, 2010,2013-2014
+# Предраг Љубеновић predragljubeno...@gmail.com, 2010,2013-2015
 # Serbian linux distribution cp6Linux
 msgid 
 msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2014-11-23 18:44+\n
+PO-Revision-Date: 2015-03-19 20:42+\n
 Last-Translator: Предраг Љубеновић predragljubeno...@gmail.com\n
 Language-Team: Serbian (http://www.transifex.com/projects/p/vlc-trans/;
 language/sr/)\n
@@ -6348,9 +6348,8 @@ msgid Layer C time interleaving
 msgstr 
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr Филтери тока
+msgstr 
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -15754,7 +15753,7 @@ msgstr Аутор
 
 #: modules/gui/macosx/AddonManager.m:189
 msgid Uninstall
-msgstr 
+msgstr Деинсталирај
 
 #: modules/gui/macosx/AddonManager.m:345
 #: modules/gui/qt4/dialogs/plugins.cpp:374
@@ -20425,7 +20424,7 @@ msgstr %1 преузимања
 
 #: modules/gui/qt4/dialogs/plugins.cpp:1263
 msgid Uninstall
-msgstr 
+msgstr Деинсталирај
 
 #: modules/gui/qt4/dialogs/plugins.cpp:1266
 msgid Install
@@ -22283,9 +22282,8 @@ msgid LibNotify Notification Plugin
 msgstr LibNotify Додатак за Обавештења
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Копирај паковалац
+msgstr 
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Thai update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
12:33:05 2015 -0400| [ddd0ae304ec31a6c83b072a9f04225cf0ee8db79] | committer: 
Christoph Miebach

l10n: Thai update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=ddd0ae304ec31a6c83b072a9f04225cf0ee8db79
---

 po/th.po |  153 +++---
 1 file changed, 67 insertions(+), 86 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=ddd0ae304ec31a6c83b072a9f04225cf0ee8db79
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Tamil update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
12:31:33 2015 -0400| [8b2d28b23c78444837b44805a2be397771905dae] | committer: 
Christoph Miebach

l10n: Tamil update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=8b2d28b23c78444837b44805a2be397771905dae
---

 po/ta.po | 1344 --
 1 file changed, 608 insertions(+), 736 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=8b2d28b23c78444837b44805a2be397771905dae
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Afrikaans update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
10:48:15 2015 -0400| [2f6510f06dc26d71399bfa2eee3748268c249dc9] | committer: 
Christoph Miebach

l10n: Afrikaans update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=2f6510f06dc26d71399bfa2eee3748268c249dc9
---

 po/af.po | 9339 +-
 1 file changed, 3768 insertions(+), 5571 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=2f6510f06dc26d71399bfa2eee3748268c249dc9
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: English (United Kingdom) update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
11:42:42 2015 -0400| [00f8e712dc4760a18154407a582aa2cf2486e1e7] | committer: 
Christoph Miebach

l10n: English (United Kingdom) update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=00f8e712dc4760a18154407a582aa2cf2486e1e7
---

 po/en_GB.po |11623 ++-
 1 file changed, 4210 insertions(+), 7413 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commitdiff;h=00f8e712dc4760a18154407a582aa2cf2486e1e7
___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Korean update

2015-04-11 Thread VideoLAN
vlc/vlc-2.2 | branch: master | VideoLAN video...@videolan.org | Sat Apr 11 
12:05:13 2015 -0400| [b34d88e61ec010f97c1b73033516bb02df858fae] | committer: 
Christoph Miebach

l10n: Korean update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=b34d88e61ec010f97c1b73033516bb02df858fae
---

 po/ko.po |   19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index 5c8540d..78e7671 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -15,7 +15,7 @@ msgstr 
 Project-Id-Version: VLC - Trans\n
 Report-Msgid-Bugs-To: vlc-de...@videolan.org\n
 POT-Creation-Date: 2015-02-26 23:48+0100\n
-PO-Revision-Date: 2015-02-09 00:36+\n
+PO-Revision-Date: 2015-03-02 14:13+\n
 Last-Translator: Potato shepp...@naver.com\n
 Language-Team: Korean (http://www.transifex.com/projects/p/vlc-trans/;
 language/ko/)\n
@@ -6452,9 +6452,8 @@ msgid Layer C time interleaving
 msgstr 레이어 C 시간 인터리빙
 
 #: modules/access/dtv/access.c:154
-#, fuzzy
 msgid Stream identifier
-msgstr 네트워크 식별자
+msgstr 스트림 식별자
 
 #: modules/access/dtv/access.c:156
 msgid Pilot
@@ -20483,7 +20482,7 @@ msgstr 이 먹서는 VLC가 직접 제공하지 않습니다: 없는 것 같네
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:609
 msgid This muxer is missing. Using this profile will fail
-msgstr 
+msgstr 이 먹서가 없습니다. 이 프로파일을 사용하면 실패할 것 입니다.
 
 #: modules/gui/qt4/components/sout/profile_selector.cpp:753
 msgid  Profile Name Missing
@@ -22898,9 +22897,8 @@ msgid LibNotify Notification Plugin
 msgstr LibNotify 알림 플러그인
 
 #: modules/packetizer/avparser.h:49
-#, fuzzy
 msgid avparser packetizer
-msgstr Copy 패킷타이저
+msgstr avparser 패킷타이저
 
 #: modules/packetizer/copy.c:48
 msgid Copy packetizer
@@ -29227,9 +29225,6 @@ msgstr ; 
 msgid Media Manager List
 msgstr 미디어 관리자 목록
 
-#~ msgid Video acceleration not available
-#~ msgstr 비디오 가속을 사용할 수 없습니다
-
 #~ msgid 
 #~ The XVideo rendering acceleration driver does not support the required 
 #~ resolution of %ux%u pixels but %PRIu32x%PRIu32 pixels instead.\n
@@ -32154,6 +32149,10 @@ msgstr 미디어 관리자 목록
 #~ msgstr VLC 디버그 로그 (%s).rtf
 
 #, fuzzy
+#~ msgid Video acceleration not available
+#~ msgstr K 비디오 가속 비디오 출력
+
+#, fuzzy
 #~ msgid Subtitle track added
 #~ msgstr 자막 트랙
 
@@ -34355,7 +34354,7 @@ msgstr 미디어 관리자 목록
 
 #, fuzzy
 #~ msgid SLP attribute identifiers
-#~ msgstr 네트워크 식별자
+#~ msgstr 스트림 식별자
 
 #, fuzzy
 #~ msgid SLP LDAP filter

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Update NEWS for 2.2.1

2015-04-11 Thread Jean-Baptiste Kempf
vlc/vlc-2.2 | branch: master | Jean-Baptiste Kempf j...@videolan.org | Sat 
Apr 11 19:57:19 2015 +0200| [c4d471b0080a3534bb29e4894b7afff5540e1dae] | 
committer: Jean-Baptiste Kempf

Update NEWS for 2.2.1

 http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=c4d471b0080a3534bb29e4894b7afff5540e1dae
---

 NEWS |   55 +++
 1 file changed, 55 insertions(+)

diff --git a/NEWS b/NEWS
index 4e7079e..a97c82b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,61 @@
 Changes between 2.2.0 and 2.2.1:
 
 
+Codec:
+ * Fix compilation with older libavcodec versions
+ * Fix some VP9 decoding
+ * Fix flac crashes
+ * Fix lpcm channel ordering
+ * Fix potential NULL dereference in dmo
+ * Fix teletext framing code in DVB PES packets
+ * Fix potential buffer overflow in schroendinger decoder
+ * Fix AAC samplerate
+
+Demuxers:
+ * Fix MP4 chapters
+ * Fix MKV overseeking, introducing slowness over network shares
+ * Fix crash when playing SPC files
+ * Fix ATRAC3 playback in MKV
+ * Revert to older ASX code
+ * Workaround TS issue with mpeg-audio
+
+Access:
+ * Fix sftp read and close sockets
+ * Fix DTV build with Linux DVB versions  5.8
+ * Fix UDP/RTP input on Windows
+
+Audio output:
+ * Fix Alsa HDMI plugs
+ * Improve Alsa output, with larger buffers
+ * Fix DirectSound output with multi-channel files
+
+OS X:
+ * Fix numerous crashes in the UI
+ * Fix video-wallpaper mode
+ * Fix race when starting VLC from command line
+
+Qt:
+ * Fix recent items behaviour
+ * Fix rotation filter activation
+ * Fix mux modules names for the streaming wizard
+
+Win32:
+ * Timestamp the signature of the dlls
+ * Fix extensions registration during install
+ * Fix extensions dialog crash
+ * Default to no DxVA decoding
+
+libVLC:
+ * fix libvlc_media_get_stats
+
+Translations:
+ * Update of Afrikaans, Albanian, Azerbaijani, Catalan, Czech, Danish, Dutch,
+   English (United Kingdom), Finnish, French, German, Hebrew, Hindi, Italian,
+   Japanese, Korean, Latvian, Macedonian, Malay, Modern Greek, Norwegian 
Bokmål,
+   Norwegian Nynorsk, Polish, Portuguese, Russian, Scottish Gaelic, Serbian,
+   Simplified Chinese, Slovak, Slovenian, Spanish, Swedish, Tamil, Thai,
+   Traditional Chinese, Turkish, Ukrainian translations
+
 
 Changes between 2.1.6 and 2.2.0:
 

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] darwinvlc: move play call to minimize time for race condition

2015-04-11 Thread David Fuhrmann
vlc | branch: master | David Fuhrmann dfuhrm...@videolan.org | Sat Apr 11 
16:19:50 2015 +0200| [b5c0fe454de96a1328751a896b42daf6ee732284] | committer: 
David Fuhrmann

darwinvlc: move play call to minimize time for race condition

This is still racy, but it should reduce the time between playlist
and interface start.

 http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b5c0fe454de96a1328751a896b42daf6ee732284
---

 bin/darwinvlc.c |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/bin/darwinvlc.c b/bin/darwinvlc.c
index fbad415..1841aca 100644
--- a/bin/darwinvlc.c
+++ b/bin/darwinvlc.c
@@ -221,10 +221,9 @@ int main( int i_argc, const char *ppsz_argv[] )
 libvlc_set_app_id (vlc, org.VideoLAN.VLC, PACKAGE_VERSION, PACKAGE_NAME);
 libvlc_set_user_agent (vlc, VLC media player, VLC/PACKAGE_VERSION);
 
-libvlc_playlist_play (vlc, -1, 0, NULL);
-
 libvlc_add_intf (vlc, hotkeys,none);
 
+libvlc_playlist_play (vlc, -1, 0, NULL);
 if (libvlc_add_intf (vlc, NULL))
 goto out;
 

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] macosx: update play and playback mode status on startup

2015-04-11 Thread David Fuhrmann
vlc | branch: master | David Fuhrmann dfuhrm...@videolan.org | Sat Apr 11 
16:21:57 2015 +0200| [5598f816905d5262928650c38d6b9a501b232deb] | committer: 
David Fuhrmann

macosx: update play and playback mode status on startup

Because the playback might have been started before the interface
registeres its callbacks, set the state manually.

close #14046

 http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5598f816905d5262928650c38d6b9a501b232deb
---

 modules/gui/macosx/intf.m |7 +++
 1 file changed, 7 insertions(+)

diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index 7ff668c..1e283aa 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -798,6 +798,13 @@ static VLCMain *_o_sharedMainInstance = nil;
 [o_mainwindow updateTimeSlider];
 [o_mainwindow updateVolumeSlider];
 
+/* Hack: Playlist is started before the interface.
+ * Thus, call additional updaters as we might miss these events if posted 
before
+ * the callbacks are registered.
+ */
+[self PlaylistItemChanged];
+[self playbackModeUpdated];
+
 // respect playlist-autostart
 // note that PLAYLIST_PLAY will not stop any playback if already started
 playlist_t * p_playlist = pl_Get(VLCIntf);

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] macosx: wait in vout provider for the interface to be initialized

2015-04-11 Thread David Fuhrmann
vlc | branch: master | David Fuhrmann dfuhrm...@videolan.org | Sat Apr 11 
16:25:29 2015 +0200| [4a17358abea2b8fce47e8af3888aec638debfb42] | committer: 
David Fuhrmann

macosx: wait in vout provider for the interface to be initialized

Because the playlist is started before the interface is up,
the vout window provider waits until basic initalization is done
in the interface (initialization of VLCIntf, NSApp, static vars).

This is still sort of a hack, ideally the playlist should be
started only after all interfaces are fully initialized.

close #11585

 http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4a17358abea2b8fce47e8af3888aec638debfb42
---

 modules/gui/macosx/intf.m |   42 --
 1 file changed, 36 insertions(+), 6 deletions(-)

diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index 1e283aa..44ca67b 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -98,6 +98,10 @@ static int BossCallback(vlc_object_t *, const char *,
 #pragma mark -
 #pragma mark VLC Interface Object Callbacks
 
+static bool b_intf_starting = false;
+static vlc_mutex_t start_mutex = VLC_STATIC_MUTEX;
+static vlc_cond_t  start_cond = VLC_STATIC_COND;
+
 /*
  * OpenIntf: initialize interface
  */
@@ -107,6 +111,7 @@ int OpenIntf (vlc_object_t *p_this)
 [VLCApplication sharedApplication];
 
 intf_thread_t *p_intf = (intf_thread_t*) p_this;
+msg_Dbg(p_intf, Starting macosx interface);
 Run(p_intf);
 
 [o_pool release];
@@ -123,13 +128,34 @@ int WindowOpen(vout_window_t *p_wnd, const 
vout_window_cfg_t *cfg)
   cfg-type != VOUT_WINDOW_TYPE_NSOBJECT)
 return VLC_EGENERIC;
 
-NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
-intf_thread_t *p_intf = VLCIntf;
-if (!p_intf) {
-msg_Err(p_wnd, Mac OS X interface not found);
-[o_pool release];
+msg_Dbg(p_wnd, Opening video window);
+
+/*
+ * HACK: Wait 200ms for the interface to come up.
+ * WindowOpen might be called before the mac intf is started. Lets wait 
until OpenIntf gets called
+ * and does basic initialization. Enqueuing the vout controller request 
into the main loop later on
+ * ensures that the actual window is created after the interface is fully 
initialized
+ * (applicationDidFinishLaunching).
+ *
+ * Timeout is needed as the mac intf is not always started at all.
+ */
+mtime_t deadline = mdate() + 20;
+vlc_mutex_lock(start_mutex);
+while (!b_intf_starting) {
+if (vlc_cond_timedwait(start_cond, start_mutex, deadline)) {
+break; // timeout
+}
+}
+
+if (!b_intf_starting) {
+msg_Err(p_wnd, Cannot create vout as Mac OS X interface was not 
found);
+vlc_mutex_unlock(start_mutex);
 return VLC_EGENERIC;
 }
+vlc_mutex_unlock(start_mutex);
+
+NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
+
 NSRect proposedVideoViewPosition = NSMakeRect(cfg-x, cfg-y, cfg-width, 
cfg-height);
 
 [o_vout_provider_lock lock];
@@ -300,9 +326,13 @@ static void Run(intf_thread_t *p_intf)
 o_vout_provider_lock = [[NSLock alloc] init];
 
 libvlc_SetExitHandler(p_intf-p_libvlc, QuitVLC, p_intf);
-
 [[VLCMain sharedInstance] setIntf: p_intf];
 
+vlc_mutex_lock(start_mutex);
+b_intf_starting = true;
+vlc_cond_signal(start_cond);
+vlc_mutex_unlock(start_mutex);
+
 [NSBundle loadNibNamed: @MainMenu owner: NSApp];
 
 [NSApp run];

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] demux: mp4: workaround for broken stsz (twos sample)

2015-04-11 Thread Francois Cartegnie
vlc | branch: master | Francois Cartegnie fcvlc...@free.fr | Sun Apr 12 
00:04:47 2015 +0200| [6e5228fdf9bedb1758577fba555a7e52321e48b5] | committer: 
Francois Cartegnie

demux: mp4: workaround for broken stsz (twos sample)

refs issues/no-sound-tv.mov

 http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6e5228fdf9bedb1758577fba555a7e52321e48b5
---

 modules/demux/mp4/mp4.c |3 +++
 1 file changed, 3 insertions(+)

diff --git a/modules/demux/mp4/mp4.c b/modules/demux/mp4/mp4.c
index a86419a..55117b0 100644
--- a/modules/demux/mp4/mp4.c
+++ b/modules/demux/mp4/mp4.c
@@ -3097,6 +3097,9 @@ static uint32_t MP4_TrackGetReadSize( mp4_track_t 
*p_track, uint32_t *pi_nb_samp
 (*pi_nb_samples)++;
 if ( p_track-i_sample_size == 0 )
 i_size += p_track-p_sample_size[i];
+/* broken stsz sample size == 1 */
+else if ( p_track-i_sample_size == 1  p_soun-i_samplesize  
p_track-i_sample_size * 8 )
+i_size += p_soun-i_samplesize * p_soun-i_channelcount / 8;
 else
 i_size += p_track-i_sample_size;
 

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits