diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-26 05:44:46 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-26 05:44:46 +0200 |
commit | bfb39023b0b2c79010ba005c195813931c7f2776 (patch) | |
tree | 2d71ab71f348532580f76e0ad6b5566008ae013c /libavcodec/cabac.h | |
parent | c684cb29bc6e81b9b2973e826b6fec98f8bafe8c (diff) | |
download | ffmpeg-bfb39023b0b2c79010ba005c195813931c7f2776.tar.gz |
h264: ff_init_cabac_states doesnt use its argument thus remove it
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r-- | libavcodec/cabac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h index 29535d08aa..d4bafe08e0 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 */ |