Home
last modified time | relevance | path

Searched refs:mcbpc (Results 1 – 2 of 2) sorted by relevance

/dports/multimedia/xvid/xvidcore/src/bitstream/
H A Dmbcoding.c475 uint32_t i, mcbpc, cbpy, bits; in CodeBlockIntra() local
481 mcbpc = ((pMB->mode >> 1) & 3) | ((pMB->cbp & 3) << 2); in CodeBlockIntra()
482 BitstreamPutBits(bs, mcbpc_intra_tab[mcbpc].code, in CodeBlockIntra()
483 mcbpc_intra_tab[mcbpc].len); in CodeBlockIntra()
485 mcbpc = (pMB->mode & 7) | ((pMB->cbp & 3) << 3); in CodeBlockIntra()
486 BitstreamPutBits(bs, mcbpc_inter_tab[mcbpc].code, in CodeBlockIntra()
487 mcbpc_inter_tab[mcbpc].len); in CodeBlockIntra()
542 uint32_t bits, mcbpc, cbpy; in CodeBlockInter() local
544 mcbpc = (pMB->mode & 7) | ((pMB->cbp & 3) << 3); in CodeBlockInter()
548 BitstreamPutBits(bs, mcbpc_inter_tab[mcbpc].code, in CodeBlockInter()
[all …]
/dports/multimedia/xvid/xvidcore/src/
H A Ddecoder.c746 uint32_t mcbpc; in decoder_iframe() local
766 mcbpc = get_mcbpc_intra(bs); in decoder_iframe()
767 mb->mode = mcbpc & 7; in decoder_iframe()
768 cbpc = (mcbpc >> 4); in decoder_iframe()
994 uint32_t mcbpc, cbpc, cbpy, cbp; in decoder_pframe() local
999 mcbpc = get_mcbpc_inter(bs); in decoder_pframe()
1000 mb->mode = mcbpc & 7; in decoder_pframe()
1001 cbpc = (mcbpc >> 4); in decoder_pframe()