comparison cljr.c @ 8765:d17c61f75ee5 libavcodec

Remove unused variables.
author diego
date Sun, 08 Feb 2009 23:24:26 +0000
parents aa68b04560ba
children 54bc8a2727b0
comparison
equal deleted inserted replaced
8764:aa68b04560ba 8765:d17c61f75ee5
89 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ 89 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
90 CLJRContext * const a = avctx->priv_data; 90 CLJRContext * const a = avctx->priv_data;
91 AVFrame *pict = data; 91 AVFrame *pict = data;
92 AVFrame * const p= (AVFrame*)&a->picture; 92 AVFrame * const p= (AVFrame*)&a->picture;
93 int size; 93 int size;
94 int mb_x, mb_y;
95 94
96 *p = *pict; 95 *p = *pict;
97 p->pict_type= FF_I_TYPE; 96 p->pict_type= FF_I_TYPE;
98 p->key_frame= 1; 97 p->key_frame= 1;
99 98