Browse Source

h264: ff_init_cabac_states doesnt use its argument thus remove it

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
bfb39023b0
3 changed files with 4 additions and 4 deletions
  1. +2
    -2
      libavcodec/cabac.c
  2. +1
    -1
      libavcodec/cabac.h
  3. +1
    -1
      libavcodec/h264.c

+ 2
- 2
libavcodec/cabac.c View File

@@ -137,7 +137,7 @@ 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(){
int i, j;

for(i=0; i<64; i++){
@@ -271,7 +271,7 @@ int main(void){

av_lfg_init(&prng, 1);
ff_init_cabac_encoder(&c, b, SIZE);
ff_init_cabac_states(&c);
ff_init_cabac_states();

for(i=0; i<SIZE; i++){
if(2*i<SIZE) r[i] = av_lfg_get(&prng) % 7;


+ 1
- 1
libavcodec/cabac.h View File

@@ -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 */

+ 1
- 1
libavcodec/h264.c View File

@@ -3536,7 +3536,7 @@ static int decode_slice(struct AVCodecContext *avctx, void *arg)
align_get_bits(&s->gb);

/* init cabac */
ff_init_cabac_states(&h->cabac);
ff_init_cabac_states();
ff_init_cabac_decoder(&h->cabac,
s->gb.buffer + get_bits_count(&s->gb) / 8,
(get_bits_left(&s->gb) + 7) / 8);


Loading…
Cancel
Save