comparison asv1.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 f98e81331a6f
children 932d306bf1dc
comparison
equal deleted inserted replaced
1521:c232b6753012 1522:79dddc5cd990
486 AVFrame *pict = data; 486 AVFrame *pict = data;
487 AVFrame * const p= (AVFrame*)&a->picture; 487 AVFrame * const p= (AVFrame*)&a->picture;
488 int size; 488 int size;
489 int mb_x, mb_y; 489 int mb_x, mb_y;
490 490
491 init_put_bits(&a->pb, buf, buf_size, NULL, NULL); 491 init_put_bits(&a->pb, buf, buf_size);
492 492
493 *p = *pict; 493 *p = *pict;
494 p->pict_type= I_TYPE; 494 p->pict_type= I_TYPE;
495 p->key_frame= 1; 495 p->key_frame= 1;
496 496