diff 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
line wrap: on
line diff
--- a/cabac.c	Sun Oct 12 19:18:37 2003 +0000
+++ b/cabac.c	Sun Oct 12 21:25:00 2003 +0000
@@ -74,7 +74,7 @@
  * @param buf_size size of buf in bits
  */
 void ff_init_cabac_encoder(CABACContext *c, uint8_t *buf, int buf_size){
-    init_put_bits(&c->pb, buf, buf_size, NULL, NULL);
+    init_put_bits(&c->pb, buf, buf_size);
 
     c->low= 0;
     c->range= 0x1FE;