| 158 | static BitAlloc dca_smpl_bitalloc[11]; ///< samples VLCs |
| 159 | |
| 160 | static av_always_inline int get_bitalloc(GetBitContext *gb, BitAlloc *ba, int idx) |
| 161 | { |
| 162 | return get_vlc2(gb, ba->vlc[idx].table, ba->vlc[idx].bits, ba->wrap) + ba->offset; |
| 163 | } |
| 164 | |
| 165 | typedef struct { |
| 166 | AVCodecContext *avctx; |
no test coverage detected