[FFmpeg-cvslog] r15477 - trunk/libavcodec/indeo3.c

benoit subversion
Tue Sep 30 13:46:37 CEST 2008


Author: benoit
Date: Tue Sep 30 13:46:37 2008
New Revision: 15477

Log:
Remove useless initializations.


Modified:
   trunk/libavcodec/indeo3.c

Modified: trunk/libavcodec/indeo3.c
==============================================================================
--- trunk/libavcodec/indeo3.c	(original)
+++ trunk/libavcodec/indeo3.c	Tue Sep 30 13:46:37 2008
@@ -110,13 +110,6 @@ static av_cold int iv_alloc_frames(Indeo
 
   luma_width   = (s->width  + 3) & (~3);
   luma_height  = (s->height + 3) & (~3);
-
-  s->iv_frame[0].y_w = s->iv_frame[0].y_h =
-    s->iv_frame[0].the_buf_size = 0;
-  s->iv_frame[1].y_w = s->iv_frame[1].y_h =
-    s->iv_frame[1].the_buf_size = 0;
-  s->iv_frame[1].the_buf = NULL;
-
   chroma_width  = ((luma_width >> 2) + 3) & (~3);
   chroma_height = ((luma_height>> 2) + 3) & (~3);
   luma_pixels = luma_width * luma_height;




More information about the ffmpeg-cvslog mailing list