[vlc-commits] xcb: fix some memory leaks

2013-06-24 Thread Edward Wang
vlc | branch: master | Edward Wang  | Mon Jun 24 
19:56:45 2013 -0400| [06005e87c76e739b1dd8a8003696571c184cf133] | committer: 
Rafaël Carré

xcb: fix some memory leaks

According to xcb docs, we are responsible for freeing this memory.

Signed-off-by: Rafaël Carré 

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

 modules/control/globalhotkeys/xcb.c |   25 ++---
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/modules/control/globalhotkeys/xcb.c 
b/modules/control/globalhotkeys/xcb.c
index f35ce67..05e5a05 100644
--- a/modules/control/globalhotkeys/xcb.c
+++ b/modules/control/globalhotkeys/xcb.c
@@ -181,10 +181,17 @@ static unsigned GetModifier( xcb_connection_t 
*p_connection, xcb_key_symbols_t *
 if( sym == 0 )
 return 0; /* no modifier */
 
-const xcb_keycode_t *p_keys = xcb_key_symbols_get_keycode( p_symbols, sym 
);
-if( !p_keys )
+xcb_get_modifier_mapping_cookie_t r =
+xcb_get_modifier_mapping( p_connection );
+xcb_get_modifier_mapping_reply_t *p_map =
+xcb_get_modifier_mapping_reply( p_connection, r, NULL );
+if( !p_map )
 return 0;
 
+xcb_keycode_t *p_keys = xcb_key_symbols_get_keycode( p_symbols, sym );
+if( !p_keys )
+goto end;
+
 int i = 0;
 bool no_modifier = true;
 while( p_keys[i] != XCB_NO_SYMBOL )
@@ -198,28 +205,24 @@ static unsigned GetModifier( xcb_connection_t 
*p_connection, xcb_key_symbols_t *
 }
 
 if( no_modifier )
-return 0;
-
-xcb_get_modifier_mapping_cookie_t r =
-xcb_get_modifier_mapping( p_connection );
-xcb_get_modifier_mapping_reply_t *p_map =
-xcb_get_modifier_mapping_reply( p_connection, r, NULL );
-if( !p_map )
-return 0;
+goto end;
 
 xcb_keycode_t *p_keycode = xcb_get_modifier_mapping_keycodes( p_map );
 if( !p_keycode )
-return 0;
+goto end;
 
 for( int i = 0; i < 8; i++ )
 for( int j = 0; j < p_map->keycodes_per_modifier; j++ )
 for( int k = 0; p_keys[k] != XCB_NO_SYMBOL; k++ )
 if( p_keycode[i*p_map->keycodes_per_modifier + j] == p_keys[k])
 {
+free( p_keys );
 free( p_map );
 return pi_mask[i];
 }
 
+end:
+free( p_keys );
 free( p_map ); // FIXME to check
 return 0;
 }

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


[vlc-commits] avcodec: mark get_buffer thread safe

2013-06-24 Thread Rémi Denis-Courmont
vlc | branch: master | Rémi Denis-Courmont  | Tue Jun 11 
19:43:25 2013 +0300| [9ba5f88e6ad394ade24da679f62d5247e2116dd2] | committer: 
Rémi Denis-Courmont

avcodec: mark get_buffer thread safe

In libavcodec, thread-safe callback merely means callback that can run
on any thread. It does not imply that the codec should be re-entrant.
In other words, it boils down to not using thread-specific variables.

The VLC get_buffer callback is not reentrant currently, but it does not
care which thread it runs on.

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

 modules/codec/avcodec/video.c |1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/codec/avcodec/video.c b/modules/codec/avcodec/video.c
index 7f5b8ab..5338144 100644
--- a/modules/codec/avcodec/video.c
+++ b/modules/codec/avcodec/video.c
@@ -335,6 +335,7 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext 
*p_context,
 if( i_codec_id == AV_CODEC_ID_MPEG4 )
 p_sys->p_context->thread_count = 1;
 
+p_sys->p_context->thread_safe_callbacks = true;
 #endif
 
 char *hw = var_CreateGetString( p_dec, "avcodec-hw" ); /* FIXME */

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


[vlc-commits] Lua: SD: simplify thread loop

2013-06-24 Thread Rémi Denis-Courmont
vlc | branch: master | Rémi Denis-Courmont  | Sun Jun 16 
17:28:53 2013 +0300| [7d7890ed110c13bc4ec8067a9c11f96e7f1706af] | committer: 
Rémi Denis-Courmont

Lua: SD: simplify thread loop

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

 modules/lua/services_discovery.c |   34 ++
 1 file changed, 14 insertions(+), 20 deletions(-)

diff --git a/modules/lua/services_discovery.c b/modules/lua/services_discovery.c
index 7cd0bd6..8aa4115 100644
--- a/modules/lua/services_discovery.c
+++ b/modules/lua/services_discovery.c
@@ -52,7 +52,6 @@ struct services_discovery_sys_t
 vlc_thread_t thread;
 vlc_mutex_t lock;
 vlc_cond_t cond;
-bool b_exiting;
 
 char **ppsz_query;
 int i_query;
@@ -135,7 +134,6 @@ int Open_LuaSD( vlc_object_t *p_this )
 p_sys->L = L;
 vlc_mutex_init( &p_sys->lock );
 vlc_cond_init( &p_sys->cond );
-p_sys->b_exiting = false;
 TAB_INIT( p_sys->i_query, p_sys->ppsz_query );
 
 if( vlc_clone( &p_sys->thread, Run, p_sd, VLC_THREAD_PRIORITY_LOW ) )
@@ -163,10 +161,6 @@ void Close_LuaSD( vlc_object_t *p_this )
 services_discovery_t *p_sd = ( services_discovery_t * )p_this;
 services_discovery_sys_t *p_sys = p_sd->p_sys;
 
-vlc_mutex_lock( &p_sys->lock );
-p_sys->b_exiting = true;
-vlc_mutex_unlock( &p_sys->lock );
-
 vlc_cancel( p_sys->thread );
 vlc_join( p_sys->thread, NULL );
 
@@ -213,29 +207,29 @@ static void* Run( void *data )
 /* Main loop to handle search requests */
 vlc_mutex_lock( &p_sys->lock );
 mutex_cleanup_push( &p_sys->lock );
-while( !p_sys->b_exiting )
+for( ;; )
 {
 /* Wait for a request */
-while( !p_sys->i_query )
+if( !p_sys->i_query )
+{
 vlc_cond_wait( &p_sys->cond, &p_sys->lock );
+continue;
+}
 
-/* Execute every query each one protected against cancelation */
-cancel = vlc_savecancel();
-while( !p_sys->b_exiting && p_sys->i_query )
-{
-char *psz_query = p_sys->ppsz_query[p_sys->i_query - 1];
-REMOVE_ELEM( p_sys->ppsz_query, p_sys->i_query, p_sys->i_query - 1 
);
+/* Execute one query (protected against cancellation) */
+char *psz_query = p_sys->ppsz_query[p_sys->i_query - 1];
+REMOVE_ELEM( p_sys->ppsz_query, p_sys->i_query, p_sys->i_query - 1 );
+vlc_mutex_unlock( &p_sys->lock );
 
-vlc_mutex_unlock( &p_sys->lock );
-DoSearch( p_sd, psz_query );
-free( psz_query );
-vlc_mutex_lock( &p_sys->lock );
-}
+cancel = vlc_savecancel();
+DoSearch( p_sd, psz_query );
+free( psz_query );
 /* Force garbage collection, because the core will keep the SD
  * open, but lua will never gc until lua_close(). */
 lua_gc( L, LUA_GCCOLLECT, 0 );
-
 vlc_restorecancel( cancel );
+
+vlc_mutex_lock( &p_sys->lock );
 }
 vlc_cleanup_run();
 

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


[vlc-commits] Tag 2.1.0-git : VLC media player 2.1.0-git

2013-06-24 Thread git
[vlc] [branch: refs/tags/2.1.0-git]
Tag:2c30042b599a3fa82f7173fbbd1d2fe0cf092a16
> http://git.videolan.org/gitweb.cgi/vlc.git?a=tag;h=2c30042b599a3fa82f7173fbbd1d2fe0cf092a16

Tagger: Jean-Baptiste Kempf 
Date:   Mon Jun 24 19:50:52 2013 +0200

VLC media player 2.1.0-git

Splitting the repository of VLC 2.1.0 and VLC.git master
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] NEWS about 2.1.0

2013-06-24 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Mon Jun 24 
19:45:26 2013 +0200| [e2916227e4edd93cbf79687a86002d9c21b9f911] | committer: 
Jean-Baptiste Kempf

NEWS about 2.1.0

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

 NEWS |   69 ++
 1 file changed, 40 insertions(+), 29 deletions(-)

diff --git a/NEWS b/NEWS
index eb1dac6..252fdbb 100644
--- a/NEWS
+++ b/NEWS
@@ -17,7 +17,7 @@ Core:
  * Full support for UNICODE Windows mode
  * Partial support for Windows Store App
  * Removed SQL support
- * Added audio fingerprinter support
+ * Add an audio fingerprinter
  * Disabled and marked obsolete --language selection
 
 Decoders:
@@ -84,6 +84,7 @@ Audio Filters:
  * New filter to enhance stereo effect by mono suppression and delay effect
  * New VSXu visualization plugin
  * ARM NEON acceleration of volume filter
+ * Rewrite of the simple downmixer filter
 
 Video Outputs:
  * New module to output using Decklink Blackmagic cards
@@ -114,7 +115,7 @@ Stream Output:
  * Added chromaprint based audio fingerprinting
 
 Fingerprinters:
- * Added AcoustID/Musicbrainz based fingerprinter
+ * Add AcoustID/Musicbrainz based fingerprinter
 
 Interfaces:
  * configurable password for the HTTP server.
@@ -129,44 +130,44 @@ Services discovery:
  * Support for multiple UPnP resources on a single item
 
 OS X Interface:
- * add support for multiple video outputs
- * add accessibility support to playback windows, open panel and fullscreen
+ * Add support for multiple video outputs
+ * Add accessibility support to playback windows, open panel and fullscreen
controller
- * add a GUI to manage podcasts
- * add a new panel for media conversation and streaming
- * add a GUI for the QTSound access module to process audio captured locally
+ * Add a GUI to manage podcasts
+ * Add a new panel for media conversation and streaming
+ * Add a GUI for the QTSound access module to process audio captured locally
- This also allows to capture input from a webcam and a mic at the same 
time.
- * add a GUI to capture QTSound data along with the current screen content
- * add an option to let the Apple Remote control the system volume instead of
+ * Add a GUI to capture QTSound data along with the current screen content
+ * Add an option to let the Apple Remote control the system volume instead of
VLC's internal volume level
- * add a new Subtitles menu to change Subtitles and their properties during
+ * Add a new Subtitles menu to change Subtitles and their properties during
playback
- * add the ability to create custom equalizer presets based upon the current
+ * Add the ability to create custom equalizer presets based upon the current
selection and to manage the list of presets
- * add custom profiles for video and audio effects, which let the user keep
+ * Add custom profiles for video and audio effects, which let the user keep
multiple configuration sets of all the individual filters
  * Support for pausing iTunes during media playback with VLC
- * add support for video filters to clone the video output or split it in parts
- * add A->B loop feature known from the Qt interface
- * add an option to disable skipping to next/previous file with the Apple 
Remote
- * add an option to show next / previous buttons
- * add an option to hide the shuffle and repeat buttons
- * add an option to hide the audio effects button (default enabled)
- * add optional playlist columns for track number, genre, album, description,
+ * Add support for video filters to clone the video output or split it in parts
+ * Add A->B loop feature known from the Qt interface
+ * Add an option to disable skipping to next/previous file with the Apple 
Remote
+ * Add an option to show next / previous buttons
+ * Add an option to hide the shuffle and repeat buttons
+ * Add an option to hide the audio effects button (default enabled)
+ * Add optional playlist columns for track number, genre, album, description,
date and language
- * add options to the Advanced Open File dialog for start and stop time
- * add an option to play videos as a desktop background
- * add support for playing video and showing audio visualizations side by side
+ * Add options to the Advanced Open File dialog for start and stop time
+ * Add an option to play videos as a desktop background
+ * Add support for playing video and showing audio visualizations side by side
  * improve fullscreen controller time slider with larger click target
  * rewrite of minimal macosx module for use within VLCKit
- * add support for 'macosx-autoplay' to the Apple Event / Apple Script bindings
+ * Add support for 'macosx-autoplay' to the Apple Event / Apple Script bindings
when adding new inputs - this also affects network streams opened through
3rd party applications
- * add a UI to the preferences dialog to configure the default application
+ * Add a UI to the preference

[vlc-commits] Import AUTHORS from 2.0 and add translators

2013-06-24 Thread Christoph Miebach
vlc | branch: master | Christoph Miebach  | Mon Jun 
24 18:06:12 2013 +0200| [4a504dea350f9bf085315803360498c26e288cca] | committer: 
Jean-Baptiste Kempf

Import AUTHORS from 2.0 and add translators

Signed-off-by: Jean-Baptiste Kempf 

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

 AUTHORS |  366 +--
 1 file changed, 262 insertions(+), 104 deletions(-)

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


[vlc-commits] Wav: No tabs in source code

2013-06-24 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Fri Jun 21 
17:13:39 2013 +0200| [22e40e618632bfe543e424a464e2e00494988ad5] | committer: 
Jean-Baptiste Kempf

Wav: No tabs in source code

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

 modules/demux/wav.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/demux/wav.c b/modules/demux/wav.c
index 6a2e146..03364b9 100644
--- a/modules/demux/wav.c
+++ b/modules/demux/wav.c
@@ -115,7 +115,7 @@ static int Open( vlc_object_t * p_this )
 
 b_is_rf64 = ( memcmp( p_peek, "RF64", 4 ) == 0 );
 if( ( !b_is_rf64 && memcmp( p_peek, "RIFF", 4 ) ) ||
- memcmp( &p_peek[8], "WAVE", 4 ) )
+  memcmp( &p_peek[8], "WAVE", 4 ) )
 {
 return VLC_EGENERIC;
 }

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


[vlc-commits] m3u8: correctly deal with BOM (fixes #8859)

2013-06-24 Thread Rémi Denis-Courmont
vlc | branch: master | Rémi Denis-Courmont  | Mon Jun 24 
18:52:10 2013 +0300| [5850dd1370c705b5cde2d6381b7feaedecec6b2e] | committer: 
Rémi Denis-Courmont

m3u8: correctly deal with BOM (fixes #8859)

75a167f5b377a1edba3e1bf0230af05da7974347 really did not work.

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

 modules/demux/playlist/m3u.c |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/modules/demux/playlist/m3u.c b/modules/demux/playlist/m3u.c
index 8519488..b995895 100644
--- a/modules/demux/playlist/m3u.c
+++ b/modules/demux/playlist/m3u.c
@@ -70,8 +70,13 @@ int Import_M3U( vlc_object_t *p_this )
 CHECK_PEEK( p_peek, 8 );
 char *(*pf_dup) (const char *);
 
+if( POKE( p_peek, "\xef\xbb\xbf", 3) )/* BOM at start */
+{
+pf_dup = CheckUnicode; /* UTF-8 */
+stream_Seek( p_demux->s, 3 );
+}
+else
 if( POKE( p_peek, "RTSPtext", 8 ) /* QuickTime */
- || POKE( p_peek, "\xef\xbb\xbf" "#EXTM3U", 10) /* BOM at start */
  || demux_IsPathExtension( p_demux, ".m3u8" )
  || demux_IsForced( p_demux, "m3u8" )
  || CheckContentType( p_demux->s, "application/vnd.apple.mpegurl" ) )

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


[vlc-commits] l10n: Dutch update

2013-06-24 Thread Thomas De Rocker
vlc | branch: master | Thomas De Rocker  | Mon Jun 
24 11:26:45 2013 +0200| [439a6cf0b81ae925dad9affb915c32590be8] | committer: 
Christoph Miebach

l10n: Dutch update

Signed-off-by: Christoph Miebach 

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

 po/nl.po | 6894 --
 1 file changed, 3965 insertions(+), 2929 deletions(-)

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


[vlc-commits] l10n: Marathi update

2013-06-24 Thread Suraj Kawade
vlc | branch: master | Suraj Kawade  | Mon Jun 24 
11:23:49 2013 +0200| [b50dc1b9eab0952d4b863c0fa58d373d089cb2b0] | committer: 
Christoph Miebach

l10n: Marathi update

Signed-off-by: Christoph Miebach 

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

 po/mr.po | 1524 +-
 1 file changed, 821 insertions(+), 703 deletions(-)

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


[vlc-commits] l10n: Russian update

2013-06-24 Thread Alexander Lakhin
vlc | branch: master | Alexander Lakhin  | Mon Jun 24 
11:34:29 2013 +0200| [0b188a7d616edbeb2fa8b56ae6ca3493645cdd88] | committer: 
Christoph Miebach

l10n: Russian update

Signed-off-by: Christoph Miebach 

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

 po/ru.po | 5156 --
 1 file changed, 2969 insertions(+), 2187 deletions(-)

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


[vlc-commits] l10n: Serbian update

2013-06-24 Thread Đorđe Vasiljević
vlc | branch: master | Đorđe Vasiljević  | Mon Jun 24 
11:40:00 2013 +0200| [5654ddc134ee47ec35c4bfd9404d5f179657] | committer: 
Christoph Miebach

l10n: Serbian update

Signed-off-by: Christoph Miebach 

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

 po/sr.po | 3646 --
 1 file changed, 2151 insertions(+), 1495 deletions(-)

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


[vlc-commits] l10n: Slovak update

2013-06-24 Thread Marián Hikaník
vlc | branch: master | Marián Hikaník  | Mon 
Jun 24 11:35:52 2013 +0200| [36d0c391e18777a92954bbc7bbfb06f095915d43] | 
committer: Christoph Miebach

l10n: Slovak update

Signed-off-by: Christoph Miebach 

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

 po/sk.po | 5463 ++
 1 file changed, 3023 insertions(+), 2440 deletions(-)

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


[vlc-commits] l10n: Polish update

2013-06-24 Thread Michał Trzebiatowski
vlc | branch: master | Michał Trzebiatowski  | Mon Jun 
24 11:32:40 2013 +0200| [3f51349d9df43f816c325d6864b640c1460bef56] | committer: 
Christoph Miebach

l10n: Polish update

Signed-off-by: Christoph Miebach 

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

 po/pl.po | 5585 --
 1 file changed, 3282 insertions(+), 2303 deletions(-)

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


[vlc-commits] l10n: Turkish update

2013-06-24 Thread Kaya Zeren
vlc | branch: master | Kaya Zeren  | Mon Jun 24 11:44:12 
2013 +0200| [f503b668bc9b683dd36b2342b81ca8bff98ef790] | committer: Christoph 
Miebach

l10n: Turkish update

Signed-off-by: Christoph Miebach 

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

 po/tr.po | 6580 --
 1 file changed, 3878 insertions(+), 2702 deletions(-)

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


[vlc-commits] l10n: Simplified Chinese update

2013-06-24 Thread Dean Lee
vlc | branch: master | Dean Lee  | Mon Jun 24 11:49:59 2013 
+0200| [dcd2493220dc1f8b2fd91520b27793892d7f44f3] | committer: Christoph Miebach

l10n: Simplified Chinese update

Signed-off-by: Christoph Miebach 

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

 po/zh_CN.po | 7063 ++-
 1 file changed, 4087 insertions(+), 2976 deletions(-)

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


[vlc-commits] l10n: Ukrainian update

2013-06-24 Thread Andriy Bandura
vlc | branch: master | Andriy Bandura  | Mon Jun 24 
11:46:54 2013 +0200| [1c42643543d908351c2765f86d25cf313214baa8] | committer: 
Christoph Miebach

l10n: Ukrainian update

Signed-off-by: Christoph Miebach 

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

 po/uk.po | 6561 +++---
 1 file changed, 3755 insertions(+), 2806 deletions(-)

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


[vlc-commits] l10n: Japanese update

2013-06-24 Thread Fumio Nakayama
vlc | branch: master | Fumio Nakayama  | Mon Jun 24 
11:19:27 2013 +0200| [ac2b923c78cd32f6fe58694c7761468420ab691a] | committer: 
Christoph Miebach

l10n: Japanese update

Signed-off-by: Christoph Miebach 

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

 po/ja.po | 5380 --
 1 file changed, 3102 insertions(+), 2278 deletions(-)

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


[vlc-commits] l10n: Bosnian update

2013-06-24 Thread Adnan Memija
vlc | branch: master | Adnan Memija  | Mon Jun 24 10:43:31 
2013 +0200| [a08b518d34d34b4d7f1377e23fd3c09d31bd248b] | committer: Christoph 
Miebach

l10n: Bosnian update

Signed-off-by: Christoph Miebach 

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

 po/bs.po | 1721 +-
 1 file changed, 906 insertions(+), 815 deletions(-)

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


[vlc-commits] l10n: Welsh update

2013-06-24 Thread Aled Powell
vlc | branch: master | Aled Powell  | Mon Jun 24 10:48:26 
2013 +0200| [850922f47a7ef96343d98ef9a455d959494b9c15] | committer: Christoph 
Miebach

l10n: Welsh update

Signed-off-by: Christoph Miebach 

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

 po/cy.po | 3442 ++
 1 file changed, 1882 insertions(+), 1560 deletions(-)

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


[vlc-commits] l10n: Spanish update

2013-06-24 Thread Sam Askari
vlc | branch: master | Sam Askari  | Mon Jun 24 10:57:52 
2013 +0200| [a4a853bf0e0193f3a80a7f670ee05145da2f815f] | committer: Christoph 
Miebach

l10n: Spanish update

Signed-off-by: Christoph Miebach 

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

 po/es.po | 9814 --
 1 file changed, 5788 insertions(+), 4026 deletions(-)

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


[vlc-commits] l10n: Kannada update

2013-06-24 Thread Yogesh K S
vlc | branch: master | Yogesh K S  | Mon Jun 
24 11:21:28 2013 +0200| [796f638c016538a66eda7757a849f4c4a5df6ee6] | committer: 
Christoph Miebach

l10n: Kannada update

Signed-off-by: Christoph Miebach 

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

 po/kn.po |  339 +++---
 1 file changed, 169 insertions(+), 170 deletions(-)

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


[vlc-commits] l10n: Czech update

2013-06-24 Thread Tomáš Chvátal
vlc | branch: master | Tomáš Chvátal  | Mon Jun 24 
10:47:24 2013 +0200| [2466a304d29042372b7669a7109daaa0ba5cd725] | committer: 
Christoph Miebach

l10n: Czech update

Signed-off-by: Christoph Miebach 

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

 po/cs.po | 2001 +-
 1 file changed, 1198 insertions(+), 803 deletions(-)

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


[vlc-commits] l10n: German update

2013-06-24 Thread Mario Siegmann
vlc | branch: master | Mario Siegmann  | Mon Jun 24 
10:51:39 2013 +0200| [cbfb939890871b3aa14f091367ae394805fb8c65] | committer: 
Christoph Miebach

l10n: German update

Signed-off-by: Christoph Miebach 

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

 po/de.po | 4904 +++---
 1 file changed, 2788 insertions(+), 2116 deletions(-)

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


[vlc-commits] l10n: Icelandic update

2013-06-24 Thread Sveinn í Felli
vlc | branch: master | Sveinn í Felli  | Mon Jun 24 11:16:36 
2013 +0200| [a0ea2cee396d6f709b468a5c2607f6460056dae2] | committer: Christoph 
Miebach

l10n: Icelandic update

Signed-off-by: Christoph Miebach 

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

 po/is.po | 2547 ++
 1 file changed, 1418 insertions(+), 1129 deletions(-)

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


[vlc-commits] l10n: Galician update

2013-06-24 Thread Gonçalo Cordeiro
vlc | branch: master | Gonçalo Cordeiro  | Mon Jun 24 
11:03:11 2013 +0200| [2608c44c18dc97b1b8a68e1c3cb321c5f562cfbb] | committer: 
Christoph Miebach

l10n: Galician update

Signed-off-by: Christoph Miebach 

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

 po/gl.po | 5673 +++---
 1 file changed, 3205 insertions(+), 2468 deletions(-)

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


[vlc-commits] l10n: Danish update

2013-06-24 Thread Aputsiaĸ Niels Janussen
vlc | branch: master | Aputsiaĸ Niels Janussen  | Mon Jun 24 
10:49:24 2013 +0200| [194e237ea1021555b9d654d22c50dd531a6c5da1] | committer: 
Christoph Miebach

l10n: Danish update

Signed-off-by: Christoph Miebach 

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

 po/da.po | 4318 --
 1 file changed, 2510 insertions(+), 1808 deletions(-)

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