Lines Matching refs:esc_count
755 int esc_count = -1;
768 esc_count = cnt - 255;
787 if ( esc_count >= 0 ) {
789 FDKwriteBits(hBitStream, esc_count, DATA_LEN_ESC_COUNT_BITS);
930 INT cnt, esc_count=-1, alignBits=7;
937 esc_count = 0; /* write esc_count even if cnt becomes smaller 15 */
945 esc_count = cnt - 15 + 1;
951 if (esc_count >= 0) {
953 FDKwriteBits(hBitStream, esc_count, FILL_EL_ESC_COUNT_BITS);
959 extBitsUsed += EL_ID_BITS + FILL_EL_COUNT_BITS + ((esc_count>=0) ? FILL_EL_ESC_COUNT_BITS : 0);