comparison cabac.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 e18667d1e94d
children e20fd60b215c
comparison
equal deleted inserted replaced
1521:c232b6753012 1522:79dddc5cd990
72 /** 72 /**
73 * 73 *
74 * @param buf_size size of buf in bits 74 * @param buf_size size of buf in bits
75 */ 75 */
76 void ff_init_cabac_encoder(CABACContext *c, uint8_t *buf, int buf_size){ 76 void ff_init_cabac_encoder(CABACContext *c, uint8_t *buf, int buf_size){
77 init_put_bits(&c->pb, buf, buf_size, NULL, NULL); 77 init_put_bits(&c->pb, buf, buf_size);
78 78
79 c->low= 0; 79 c->low= 0;
80 c->range= 0x1FE; 80 c->range= 0x1FE;
81 c->outstanding_count= 0; 81 c->outstanding_count= 0;
82 #ifdef STRICT_LIMITS 82 #ifdef STRICT_LIMITS