Home
last modified time | relevance | path

Searched refs:coef_vlcs (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dwmaenc.c320 if (abs_level <= s->coef_vlcs[tindex]->max_level) in encode_block()
321 if (run < s->coef_vlcs[tindex]->levels[abs_level - 1]) in encode_block()
324 av_assert2(code < s->coef_vlcs[tindex]->n); in encode_block()
325 put_bits(&s->pb, s->coef_vlcs[tindex]->huffbits[code], in encode_block()
326 s->coef_vlcs[tindex]->huffcodes[code]); in encode_block()
342 put_bits(&s->pb, s->coef_vlcs[tindex]->huffbits[1], in encode_block()
343 s->coef_vlcs[tindex]->huffcodes[1]); in encode_block()
Dwma.c339 s->coef_vlcs[0] = &coef_vlcs[coef_vlc_table * 2]; in ff_wma_init()
340 s->coef_vlcs[1] = &coef_vlcs[coef_vlc_table * 2 + 1]; in ff_wma_init()
342 &s->int_table[0], s->coef_vlcs[0]); in ff_wma_init()
347 &s->int_table[1], s->coef_vlcs[1]); in ff_wma_init()
Dwmadata.h1371 static const CoefVLCTable coef_vlcs[6] = { variable
Dwma.h98 const CoefVLCTable *coef_vlcs[2]; member