diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2008-09-30 11:46:37 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-09-30 11:46:37 +0000 |
commit | c2db8a99a638c77e30a6ecc0361d17740827dc0c (patch) | |
tree | 8928882eba108513c62379f3df272eaa571df1ac /libavcodec/indeo3.c | |
parent | 8b27f76bf8790536afccb96780b5feb9c65636be (diff) | |
download | ffmpeg-c2db8a99a638c77e30a6ecc0361d17740827dc0c.tar.gz |
Remove useless initializations.
Originally committed as revision 15477 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo3.c')
-rw-r--r-- | libavcodec/indeo3.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index 3d5a568c9e..606ff22408 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -110,13 +110,6 @@ static av_cold int iv_alloc_frames(Indeo3DecodeContext *s) 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; |