[vlc-devel] commit: Fixed regression in wall. (Laurent Aimar )

git version control git at videolan.org
Tue Jun 9 20:00:28 CEST 2009


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Sun Jun  7 17:07:27 2009 +0200| [65c1e26fb0e2a46d029bc2bbab749abf31a13309] | committer: Laurent Aimar 

Fixed regression in wall.

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

 modules/video_filter/wall.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/modules/video_filter/wall.c b/modules/video_filter/wall.c
index aa65b68..d6a73a3 100644
--- a/modules/video_filter/wall.c
+++ b/modules/video_filter/wall.c
@@ -104,7 +104,7 @@ struct video_splitter_sys_t
     int           i_col;
     int           i_row;
     int           i_output;
-    wall_output_t pp_output[ROW_MAX][COL_MAX]; /* [x][y] */
+    wall_output_t pp_output[COL_MAX][ROW_MAX]; /* [x][y] */
 };
 
 static int Filter( video_splitter_t *, picture_t *pp_dst[], picture_t * );
@@ -156,6 +156,8 @@ static int Open( vlc_object_t *p_this )
         const int i_index = atoi( psz_tmp );
         if( i_index >= 0 && i_index < COL_MAX*ROW_MAX )
             pb_active[i_index] = true;
+
+        psz_tmp = psz_next;
     }
     free( psz_state );
 




More information about the vlc-devel mailing list