~ubuntu-branches/ubuntu/raring/libav/raring-proposed

« back to all changes in this revision

Viewing changes to libavcodec/rv40.c

  • Committer: Package Import Robot
  • Author(s): Jamie Strandboge
  • Date: 2012-11-16 12:39:50 UTC
  • mfrom: (26.1.1 quantal-security)
  • Revision ID: package-import@ubuntu.com-20121116123950-p11m12vkg2n8zc98
Tags: 6:0.8.4-0ubuntu1
No change rebuild for raring

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
    for(i = 0; i < NUM_PTYPE_VLCS; i++){
81
81
        ptype_vlc[i].table = &ptype_table[i << PTYPE_VLC_BITS];
82
82
        ptype_vlc[i].table_allocated = 1 << PTYPE_VLC_BITS;
83
 
        init_vlc_sparse(&ptype_vlc[i], PTYPE_VLC_BITS, PTYPE_VLC_SIZE,
84
 
                         ptype_vlc_bits[i],  1, 1,
85
 
                         ptype_vlc_codes[i], 1, 1,
86
 
                         ptype_vlc_syms,     1, 1, INIT_VLC_USE_NEW_STATIC);
 
83
        ff_init_vlc_sparse(&ptype_vlc[i], PTYPE_VLC_BITS, PTYPE_VLC_SIZE,
 
84
                            ptype_vlc_bits[i],  1, 1,
 
85
                            ptype_vlc_codes[i], 1, 1,
 
86
                            ptype_vlc_syms,     1, 1, INIT_VLC_USE_NEW_STATIC);
87
87
    }
88
88
    for(i = 0; i < NUM_BTYPE_VLCS; i++){
89
89
        btype_vlc[i].table = &btype_table[i << BTYPE_VLC_BITS];
90
90
        btype_vlc[i].table_allocated = 1 << BTYPE_VLC_BITS;
91
 
        init_vlc_sparse(&btype_vlc[i], BTYPE_VLC_BITS, BTYPE_VLC_SIZE,
92
 
                         btype_vlc_bits[i],  1, 1,
93
 
                         btype_vlc_codes[i], 1, 1,
94
 
                         btype_vlc_syms,     1, 1, INIT_VLC_USE_NEW_STATIC);
 
91
        ff_init_vlc_sparse(&btype_vlc[i], BTYPE_VLC_BITS, BTYPE_VLC_SIZE,
 
92
                            btype_vlc_bits[i],  1, 1,
 
93
                            btype_vlc_codes[i], 1, 1,
 
94
                            btype_vlc_syms,     1, 1, INIT_VLC_USE_NEW_STATIC);
95
95
    }
96
96
}
97
97