Lines Matching defs:codewords
70 int bandWidthT[BANDS]; ///< codewords per band
80 int codewords[COEFFS]; ///< raw codewords read from bitstream
781 if (chctx->codewords[j] >= max_size || chctx->codewords[j] < 0)
786 if (chctx->codewords[j] >= middle_value)
787 chctx->CWdecoded[j] = quantizer[chctx->codewords[j] - 8] * chctx->flcoeffs6[i];
789 chctx->CWdecoded[j] = -quantizer[max_size - chctx->codewords[j] - 8 - 1] * chctx->flcoeffs6[i];
792 if (chctx->codewords[j] >= middle_value)
793 chctx->CWdecoded[j] = quantizer[chctx->codewords[j] - 1] * chctx->flcoeffs6[i];
795 chctx->CWdecoded[j] = -quantizer[max_size - 2 - chctx->codewords[j]] * chctx->flcoeffs6[i];
825 chctx->codewords[j] = cw;
1004 memset(chctx->codewords, 0, sizeof(chctx->codewords));