Mercurial > libavcodec.hg
changeset 7964:cbf97db31e61 libavcodec
Remove useless context variable.
author | benoit |
---|---|
date | Wed, 01 Oct 2008 08:29:19 +0000 |
parents | 474794ff86df |
children | d4ae40057dd3 |
files | indeo3.c |
diffstat | 1 files changed, 0 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/indeo3.c Wed Oct 01 08:27:37 2008 +0000 +++ b/indeo3.c Wed Oct 01 08:29:19 2008 +0000 @@ -35,7 +35,6 @@ 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 @@ 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;