Home | History | Annotate | Download | only in enc

Lines Matching refs:trimmed_length

340     int trimmed_length = num_tokens;
347 --trimmed_length; // discount trailing zeros
358 write_trimmed_length = (trimmed_length > 1 && trailing_zero_bits > 12);
359 length = write_trimmed_length ? trimmed_length : num_tokens;
362 const int nbits = VP8LBitsLog2Ceiling(trimmed_length - 1);
365 assert(trimmed_length >= 2);
366 VP8LWriteBits(bw, nbitpairs * 2, trimmed_length - 2);