comparison ulti.c @ 4740:59f4fb490fa7 libavcodec

Remove redundant assign
author kostya
date Tue, 27 Mar 2007 05:23:07 +0000
parents c8c591fe26f8
children f99e40a7155b
comparison
equal deleted inserted replaced
4739:9b4c5d2fb8ce 4740:59f4fb490fa7
49 s->avctx = avctx; 49 s->avctx = avctx;
50 s->width = avctx->width; 50 s->width = avctx->width;
51 s->height = avctx->height; 51 s->height = avctx->height;
52 s->blocks = (s->width / 8) * (s->height / 8); 52 s->blocks = (s->width / 8) * (s->height / 8);
53 avctx->pix_fmt = PIX_FMT_YUV410P; 53 avctx->pix_fmt = PIX_FMT_YUV410P;
54 avctx->has_b_frames = 0;
55 avctx->coded_frame = (AVFrame*) &s->frame; 54 avctx->coded_frame = (AVFrame*) &s->frame;
56 s->ulti_codebook = ulti_codebook; 55 s->ulti_codebook = ulti_codebook;
57 56
58 return 0; 57 return 0;
59 } 58 }