comparison h263dec.c @ 1892:5ac49e7a1b8f libavcodec

init cleanup
author michael
date Tue, 16 Mar 2004 16:11:29 +0000
parents bdf3927bf8c5
children f2d134308a70
comparison
equal deleted inserted replaced
1891:f403b3e286b3 1892:5ac49e7a1b8f
40 s->width = avctx->width; 40 s->width = avctx->width;
41 s->height = avctx->height; 41 s->height = avctx->height;
42 s->workaround_bugs= avctx->workaround_bugs; 42 s->workaround_bugs= avctx->workaround_bugs;
43 43
44 // set defaults 44 // set defaults
45 MPV_decode_defaults(s);
45 s->quant_precision=5; 46 s->quant_precision=5;
46 s->progressive_sequence=1;
47 s->decode_mb= ff_h263_decode_mb; 47 s->decode_mb= ff_h263_decode_mb;
48 s->low_delay= 1; 48 s->low_delay= 1;
49 avctx->pix_fmt= PIX_FMT_YUV420P; 49 avctx->pix_fmt= PIX_FMT_YUV420P;
50 s->unrestricted_mv= 1; 50 s->unrestricted_mv= 1;
51 51