# HG changeset patch # User bellard # Date 1061762902 0 # Node ID 9a218b289ee0b581fcd84f3426923060159e313c # Parent 5ee7bd7ee76d5455547ba668053461e0c0f116af removed unused variables diff -r 5ee7bd7ee76d -r 9a218b289ee0 cljr.c --- a/cljr.c Sun Aug 24 22:01:33 2003 +0000 +++ b/cljr.c Sun Aug 24 22:08:22 2003 +0000 @@ -41,8 +41,7 @@ CLJRContext * const a = avctx->priv_data; AVFrame *picture = data; AVFrame * const p= (AVFrame*)&a->picture; - uint8_t *bytestream= buf; - int i, x, y; + int x, y; *data_size = 0; @@ -65,7 +64,6 @@ init_get_bits(&a->gb, buf, buf_size); for(y=0; yheight; y++){ - int offset; uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ]; uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ]; uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ]; @@ -120,10 +118,7 @@ } static int decode_init(AVCodecContext *avctx){ - CLJRContext * const a = avctx->priv_data; - AVFrame *p= (AVFrame*)&a->picture; - int i; - + common_init(avctx); avctx->pix_fmt= PIX_FMT_YUV411P; @@ -132,16 +127,13 @@ } static int encode_init(AVCodecContext *avctx){ - CLJRContext * const a = avctx->priv_data; - int i; - + common_init(avctx); return 0; } static int decode_end(AVCodecContext *avctx){ - CLJRContext * const a = avctx->priv_data; avcodec_default_free_buffers(avctx); diff -r 5ee7bd7ee76d -r 9a218b289ee0 ra144.c --- a/ra144.c Sun Aug 24 22:01:33 2003 +0000 +++ b/ra144.c Sun Aug 24 22:08:22 2003 +0000 @@ -185,7 +185,6 @@ static void add_wav(Real144_internal *glob, int n, int f, int m1, int m2, int m3, short *s1, short *s2, short *s3, short *dest) { int a,b,c; - int x; short *ptr,*ptr2; ptr=glob->wavtable1+n*9; @@ -308,7 +307,6 @@ { int *c; int x; - int d; unsigned int res; int b; diff -r 5ee7bd7ee76d -r 9a218b289ee0 ra288.c --- a/ra288.c Sun Aug 24 22:01:33 2003 +0000 +++ b/ra288.c Sun Aug 24 22:08:22 2003 +0000 @@ -168,7 +168,7 @@ { int a,b,c; unsigned int x; - float *fp,*fp2; + float *fp; float buffer1[37]; float buffer2[37]; float work[111];