summaryrefslogtreecommitdiff
path: root/libavcodec/indeo3.c
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2008-10-01 08:29:19 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2008-10-01 08:29:19 +0000
commit5fbec7919743cbe4509d6967b287d3e663b13e16 (patch)
treef349d26e89a0fe558bb9b10ad440c73ac6daa105 /libavcodec/indeo3.c
parent963203361c1beefeaec69fa29be90ebc942f4c78 (diff)
Remove useless context variable.
Originally committed as revision 15495 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo3.c')
-rw-r--r--libavcodec/indeo3.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c
index 8be9696326..9594628666 100644
--- a/libavcodec/indeo3.c
+++ b/libavcodec/indeo3.c
@@ -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(Indeo3DecodeContext *s)
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;