summaryrefslogtreecommitdiff
path: root/libavcodec/cabac.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-08-26 05:44:46 +0200
committerAnton Khirnov <anton@khirnov.net>2013-03-13 09:14:05 +0100
commit0fe4b48540613127f7eed13769e989662cb74eef (patch)
treee1c18f5094e00b2aeb75726f080b99c46d787daf /libavcodec/cabac.h
parentbe40d6cc2bc99ef90954c85f2bc77f95944ba723 (diff)
cabac: remove unused argument of ff_init_cabac_states()
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r--libavcodec/cabac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h
index 1f1c943262..04495a6fe6 100644
--- a/libavcodec/cabac.h
+++ b/libavcodec/cabac.h
@@ -51,6 +51,6 @@ typedef struct CABACContext{
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_states(CABACContext *c);
+void ff_init_cabac_states(void);
#endif /* AVCODEC_CABAC_H */