diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-26 05:44:46 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-03-13 09:14:05 +0100 |
commit | 0fe4b48540613127f7eed13769e989662cb74eef (patch) | |
tree | e1c18f5094e00b2aeb75726f080b99c46d787daf /libavcodec/cabac.c | |
parent | be40d6cc2bc99ef90954c85f2bc77f95944ba723 (diff) | |
download | ffmpeg-0fe4b48540613127f7eed13769e989662cb74eef.tar.gz |
cabac: remove unused argument of ff_init_cabac_states()
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/cabac.c')
-rw-r--r-- | libavcodec/cabac.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/cabac.c b/libavcodec/cabac.c index 02d2911e85..6ba9303dc1 100644 --- a/libavcodec/cabac.c +++ b/libavcodec/cabac.c @@ -136,7 +136,8 @@ void ff_init_cabac_decoder(CABACContext *c, const uint8_t *buf, int buf_size){ c->range= 0x1FE; } -void ff_init_cabac_states(CABACContext *c){ +void ff_init_cabac_states(void) +{ int i, j; for(i=0; i<64; i++){ |