Home | History | Annotate | Download | only in encoder

Lines Matching full:temp_in

159   int16_t temp_in[4], temp_out[4];
165 temp_in[j] = input[j * stride + i] * 16;
166 if (i == 0 && temp_in[0])
167 temp_in[0] += 1;
168 ht.cols(temp_in, temp_out);
176 temp_in[j] = out[j + i * 4];
177 ht.rows(temp_in, temp_out);
567 int16_t temp_in[8], temp_out[8];
573 temp_in[j] = input[j * stride + i] * 4;
574 ht.cols(temp_in, temp_out);
582 temp_in[j] = out[j + i * 8];
583 ht.rows(temp_in, temp_out);
960 int16_t temp_in[16], temp_out[16];
966 temp_in[j] = input[j * stride + i] * 4;
967 ht.cols(temp_in, temp_out);
976 temp_in[j] = out[j + i * 16];
977 ht.rows(temp_in, temp_out);
1323 int temp_in[32], temp_out[32];
1325 temp_in[j] = input[j * stride + i] * 4;
1326 dct32_1d(temp_in, temp_out, 0);
1333 int temp_in[32], temp_out[32];
1335 temp_in[j] = output[j + i * 32];
1336 dct32_1d(temp_in, temp_out, 0);
1351 int temp_in[32], temp_out[32];
1353 temp_in[j] = input[j * stride + i] * 4;
1354 dct32_1d(temp_in, temp_out, 0);
1364 int temp_in[32], temp_out[32];
1366 temp_in[j] = output[j + i * 32];
1367 dct32_1d(temp_in, temp_out, 1);