summaryrefslogtreecommitdiff
path: root/libavcodec/cabac.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/cabac.c')
-rw-r--r--libavcodec/cabac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cabac.c b/libavcodec/cabac.c
index 3e50dc82a0..27e63045b7 100644
--- a/libavcodec/cabac.c
+++ b/libavcodec/cabac.c
@@ -74,7 +74,7 @@ const uint8_t ff_h264_lps_state[64]= {
* @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;