Lines Matching refs:idx
116 int idx;
123 idx = bytestream2_get_byte(gb);
130 idx = bytestream2_get_byte(gb) | (((idx9val >> (7 - idx9bits)) & 1) << 8);
132 if (idx >= nb_vectors)
135 dsty[x +frame->linesize[0]] = vec[idx * 12 + 0];
136 dsty[x+1+frame->linesize[0]] = vec[idx * 12 + 3];
137 dsty[x] = vec[idx * 12 + 6];
138 dsty[x+1] = vec[idx * 12 + 9];
140 dstu[x +frame->linesize[1]] = vec[idx * 12 + 1];
141 dstu[x+1+frame->linesize[1]] = vec[idx * 12 + 4];
142 dstu[x] = vec[idx * 12 + 7];
143 dstu[x+1] = vec[idx * 12 +10];
145 dstv[x +frame->linesize[2]] = vec[idx * 12 + 2];
146 dstv[x+1+frame->linesize[2]] = vec[idx * 12 + 5];
147 dstv[x] = vec[idx * 12 + 8];
148 dstv[x+1] = vec[idx * 12 +11];