[vlc-devel] commit: Copyright Update and cosmetic (Jean-Baptiste Kempf )

git version control git at videolan.org
Thu May 14 21:08:28 CEST 2009


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu May 14 21:08:06 2009 +0200| [81d02d8e85861f26fbf64c6d3472779f23318618] | committer: Jean-Baptiste Kempf 

Copyright Update and cosmetic

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

 modules/demux/vobsub.h |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/modules/demux/vobsub.h b/modules/demux/vobsub.h
index c5faee1..cabdefb 100644
--- a/modules/demux/vobsub.h
+++ b/modules/demux/vobsub.h
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * vobsub.h: Vobsub support
  *****************************************************************************
- * Copyright (C) 2008 the VideoLAN team
+ * Copyright (C) 2009 the VideoLAN team
  * $Id$
  *
  * Authors: John Stebbins
@@ -40,8 +40,10 @@ static inline void vobsub_palette_rgb2yuv( uint32_t *pu_palette )
 static inline int vobsub_palette_parse( const char *psz_buf, uint32_t *pu_palette )
 {
     if( sscanf( psz_buf, "palette: "
-                "%"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", "
-                "%"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32"",
+                "%"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", "
+                "%"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", "
+                "%"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32", "
+                "%"PRIx32", %"PRIx32", %"PRIx32", %"PRIx32"",
                 &pu_palette[0], &pu_palette[1], &pu_palette[2], &pu_palette[3],
                 &pu_palette[4], &pu_palette[5], &pu_palette[6], &pu_palette[7],
                 &pu_palette[8], &pu_palette[9], &pu_palette[10], &pu_palette[11],
@@ -56,7 +58,9 @@ static inline int vobsub_palette_parse( const char *psz_buf, uint32_t *pu_palett
     }
 }
 
-static inline int vobsub_size_parse( const char *psz_buf, int *pi_original_frame_width, int *pi_original_frame_height )
+static inline int vobsub_size_parse( const char *psz_buf,
+                                     int *pi_original_frame_width,
+                                     int *pi_original_frame_height )
 {
     if( sscanf( psz_buf, "size: %dx%d",
                 pi_original_frame_width, pi_original_frame_height ) == 2 )




More information about the vlc-devel mailing list