Lines Matching defs:out

109             uint8_t *out, *tprev;
118 /* copy block - motion vectors out of bounds are used to zero blocks */
119 out = output + x;
125 memset(out, 0, bw2);
127 memcpy(out, tprev, sizeof(*out) * bw2);
131 out[i] = 0;
133 out[i] = tprev[i];
136 out += c->width;
141 out = output + x;
144 out[i] ^= *src++;
145 out += c->width;
183 uint16_t *out, *tprev;
192 /* copy block - motion vectors out of bounds are used to zero blocks */
193 out = output + x;
199 memset(out, 0, bw2 * 2);
201 memcpy(out, tprev, sizeof(*out) * bw2);
205 out[i] = 0;
207 out[i] = tprev[i];
210 out += c->width;
215 out = output + x;
218 out[i] ^= *((uint16_t*)src);
221 out += c->width;
262 uint8_t *out, *tprev;
271 /* copy block - motion vectors out of bounds are used to zero blocks */
272 out = output + x * 3;
278 memset(out, 0, bw2 * 3);
280 memcpy(out, tprev, 3 * bw2);
284 out[i * 3 + 0] = 0;
285 out[i * 3 + 1] = 0;
286 out[i * 3 + 2] = 0;
288 out[i * 3 + 0] = tprev[i * 3 + 0];
289 out[i * 3 + 1] = tprev[i * 3 + 1];
290 out[i * 3 + 2] = tprev[i * 3 + 2];
294 out += stride;
299 out = output + x * 3;
302 out[i * 3 + 0] ^= *src++;
303 out[i * 3 + 1] ^= *src++;
304 out[i * 3 + 2] ^= *src++;
306 out += stride;
345 uint32_t *out, *tprev;
354 /* copy block - motion vectors out of bounds are used to zero blocks */
355 out = output + x;
361 memset(out, 0, bw2 * 4);
363 memcpy(out, tprev, sizeof(*out) * bw2);
367 out[i] = 0;
369 out[i] = tprev[i];
372 out += c->width;
377 out = output + x;
380 out[i] ^= *((uint32_t *) src);
383 out += c->width;
403 /* make the palette available on the way out */
577 uint8_t *out, *src;
580 out = frame->data[0];
592 av_image_copy_plane(out, frame->linesize[0], src, c->stride,