[vlc-devel] commit: Remove unused variable. (Antoine Cellerier )

git version control git at videolan.org
Mon May 26 14:12:04 CEST 2008


vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Mon May 26 13:49:44 2008 +0200| [4e8ff11fa527bcfb49eb4e747fac40b7b249233e]

Remove unused variable.

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

 modules/codec/rawvideo.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/modules/codec/rawvideo.c b/modules/codec/rawvideo.c
index e343c19..30e05b3 100644
--- a/modules/codec/rawvideo.c
+++ b/modules/codec/rawvideo.c
@@ -258,11 +258,10 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
 static void FillPicture( decoder_t *p_dec, block_t *p_block, picture_t *p_pic )
 {
     uint8_t *p_src, *p_dst;
-    int i_src, i_plane, i_line, i_width;
+    int i_plane, i_line, i_width;
     decoder_sys_t *p_sys = p_dec->p_sys;
 
     p_src = p_block->p_buffer;
-    i_src = p_block->i_buffer;
 
     for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
     {




More information about the vlc-devel mailing list