Commit 0fe4b485 authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Anton Khirnov

cabac: remove unused argument of ff_init_cabac_states()

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent be40d6cc
...@@ -136,7 +136,8 @@ void ff_init_cabac_decoder(CABACContext *c, const uint8_t *buf, int buf_size){ ...@@ -136,7 +136,8 @@ void ff_init_cabac_decoder(CABACContext *c, const uint8_t *buf, int buf_size){
c->range= 0x1FE; c->range= 0x1FE;
} }
void ff_init_cabac_states(CABACContext *c){ void ff_init_cabac_states(void)
{
int i, j; int i, j;
for(i=0; i<64; i++){ for(i=0; i<64; i++){
......
...@@ -51,6 +51,6 @@ typedef struct CABACContext{ ...@@ -51,6 +51,6 @@ typedef struct CABACContext{
void ff_init_cabac_encoder(CABACContext *c, uint8_t *buf, int buf_size); void ff_init_cabac_encoder(CABACContext *c, uint8_t *buf, int buf_size);
void ff_init_cabac_decoder(CABACContext *c, const uint8_t *buf, int buf_size); void ff_init_cabac_decoder(CABACContext *c, const uint8_t *buf, int buf_size);
void ff_init_cabac_states(CABACContext *c); void ff_init_cabac_states(void);
#endif /* AVCODEC_CABAC_H */ #endif /* AVCODEC_CABAC_H */
...@@ -4111,7 +4111,7 @@ static int decode_slice(struct AVCodecContext *avctx, void *arg) ...@@ -4111,7 +4111,7 @@ static int decode_slice(struct AVCodecContext *avctx, void *arg)
align_get_bits(&h->gb); align_get_bits(&h->gb);
/* init cabac */ /* init cabac */
ff_init_cabac_states(&h->cabac); ff_init_cabac_states();
ff_init_cabac_decoder(&h->cabac, ff_init_cabac_decoder(&h->cabac,
h->gb.buffer + get_bits_count(&h->gb) / 8, h->gb.buffer + get_bits_count(&h->gb) / 8,
(get_bits_left(&h->gb) + 7) / 8); (get_bits_left(&h->gb) + 7) / 8);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment