changeset 7951:f6c77b264d9b libavcodec

Remove useless initializations.
author benoit
date Tue, 30 Sep 2008 11:46:37 +0000
parents 9d2399045441
children 7f123fad56ea
files indeo3.c
diffstat 1 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/indeo3.c	Tue Sep 30 09:54:13 2008 +0000
+++ b/indeo3.c	Tue Sep 30 11:46:37 2008 +0000
@@ -110,13 +110,6 @@
 
   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;