comparison mjpeg.c @ 1522:79dddc5cd990 libavcodec

removed the obsolete and unused parameters of init_put_bits
author alex
date Sun, 12 Oct 2003 21:25:00 +0000
parents b44267fc5ec4
children 3b31998fe22f
comparison
equal deleted inserted replaced
1521:c232b6753012 1522:79dddc5cd990
659 const int width= s->width; 659 const int width= s->width;
660 const int height= s->height; 660 const int height= s->height;
661 AVFrame * const p= (AVFrame*)&s->current_picture; 661 AVFrame * const p= (AVFrame*)&s->current_picture;
662 const int predictor= avctx->prediction_method+1; 662 const int predictor= avctx->prediction_method+1;
663 663
664 init_put_bits(&s->pb, buf, buf_size, NULL, NULL); 664 init_put_bits(&s->pb, buf, buf_size);
665 665
666 *p = *pict; 666 *p = *pict;
667 p->pict_type= FF_I_TYPE; 667 p->pict_type= FF_I_TYPE;
668 p->key_frame= 1; 668 p->key_frame= 1;
669 669