Home | History | Annotate | Download | only in jpeg

Lines Matching refs:Tq

37 	tq uint8 // Quantization table destination selector.
335 d.comp[i].tq = d.tmp[8+3*i]
336 if d.comp[i].tq > maxTq {
337 return FormatError("bad Tq value")
430 tq := x & 0x0f
431 if tq > maxTq {
432 return FormatError("bad Tq value")
445 for i := range d.quant[tq] {
446 d.quant[tq][i] = int32(d.tmp[i])
456 for i := range d.quant[tq] {
457 d.quant[tq][i] = int32(d.tmp[2*i])<<8 | int32(d.tmp[2*i+1])