[FFmpeg-cvslog] r15495 - trunk/libavcodec/indeo3.c
benoit
subversion
Wed Oct 1 10:29:20 CEST 2008
Author: benoit
Date: Wed Oct 1 10:29:19 2008
New Revision: 15495
Log:
Remove useless context variable.
Modified:
trunk/libavcodec/indeo3.c
Modified: trunk/libavcodec/indeo3.c
==============================================================================
--- trunk/libavcodec/indeo3.c (original)
+++ trunk/libavcodec/indeo3.c Wed Oct 1 10:29:19 2008
@@ -35,7 +35,6 @@ typedef struct
uint8_t *Ybuf;
uint8_t *Ubuf;
uint8_t *Vbuf;
- unsigned int the_buf_size;
unsigned short y_w, y_h;
unsigned short uv_w, uv_h;
} YUVBufs;
@@ -114,7 +113,6 @@ static av_cold int iv_alloc_frames(Indeo
s->iv_frame[0].y_h = s->iv_frame[1].y_h = luma_height;
s->iv_frame[0].uv_w = s->iv_frame[1].uv_w = chroma_width;
s->iv_frame[0].uv_h = s->iv_frame[1].uv_h = chroma_height;
- s->iv_frame[0].the_buf_size = bufsize;
s->iv_frame[0].Ybuf = s->buf + luma_width;
i = luma_pixels + luma_width * 2;
More information about the ffmpeg-cvslog
mailing list